Start() private method

private Start ( ) : void
return void
Beispiel #1
0
 /// <summary>
 /// App window constructor
 /// </summary>
 public AppWindow() : base(new Vector2(1500, 1000), "Test App", 30.0)
 {
     // Create the menu scene
     MenuScene = new MenuScene(this);
     // Start the menu scene
     MenuScene.Start();
 }