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

            Components.Add(helpScreen);
        }
コード例 #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();
 }
コード例 #3
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();
 }
コード例 #4
0
        private void initializeHelpScreen()
        {
            Components.Clear();
            HelpScreen helpScreen = new HelpScreen(this);

            Components.Add(helpScreen);
        }