This class represent the Help Screen that show some info on how to play the game
Inheritance: Screen
        private void initializeHelpScreen()
        {
            Components.Clear();
            HelpScreen helpScreen = new HelpScreen(this);

            Components.Add(helpScreen);
        }
Beispiel #2
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();
 }
        private void initializeHelpScreen()
        {
            Components.Clear();
            HelpScreen helpScreen = new HelpScreen(this);

            Components.Add(helpScreen);
        }