public IntroductionGameState(ColorTickleGame game, bool PerformTutorial)
 {
     this.game            = game;
     this.PerformTutorial = PerformTutorial;
 }
Esempio n. 2
0
 public ResultGameState(ColorTickleGame game)
 {
     this.game = game;
 }
Esempio n. 3
0
 public TutorialGameState(ColorTickleGame game)
 {
     this.game = game;
 }
Esempio n. 4
0
 public PlayGameState(ColorTickleGame game)
 {
     this.game = game;
 }