private DummyScene sceneC;
@Override
public void inStartUp(MTApplication app) {
//Add a scene to the mt application
this.sceneA = new DummyScene(app, "Dummy SceneA");
app.addScene(sceneA);
//Add a scene to the mt application
this.sceneB = new DummyScene(app, "Dummy SceneB");
app.addScene(sceneB);
//Add a scene to the mt application
this.sceneC = new DummyScene(app, "Dummy SceneC");
app.addScene(sceneC);
}