Start() private méthode

private Start ( ) : void
Résultat void
Exemple #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();
 }