This class represent the Level Screen that is displayed at the beginning of each level showing the level number and waiting on input from the user to start the actual level.
Inheritance: Screen
Exemple #1
0
 // Called when the game should load its content
 protected override void LoadContent()
 {
     speechRecognizer = new SpeechRecognizer(this);
     helpScreen       = new HelpScreen(this);
     startScreen      = new StartScreen(this);
     levelScreen      = new LevelScreen(this);
     creditsScreen    = new CreditsScreen(this);
     initializeStartMenu();
     //initializeGame1();
 }
 // Called when the game should load its content
 protected override void LoadContent()
 {
     speechRecognizer = new SpeechRecognizer(this);
     helpScreen = new HelpScreen(this);
     startScreen = new StartScreen(this);
     levelScreen = new LevelScreen(this);
     creditsScreen = new CreditsScreen(this);
     initializeStartMenu();
     //initializeGame1();
 }