This class represent the Credits Screen that hold the name of the persons who worked on that game
Inheritance: Screen
Example #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();
 }
Example #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();
 }