Exemplo n.º 1
0
 public MissingLetterIntroductionState(MissingLetterGame _game)
 {
     this.m_oGame = _game;
 }
Exemplo n.º 2
0
 public MissingLetterTutorialState(MissingLetterGame _game)
 {
     this.m_oGame = _game;
 }
Exemplo n.º 3
0
 public MissingLetterPlayState(MissingLetterGame _game)
 {
     this.m_oGame           = _game;
     M_oGameTime            = new CountdownTimer(_game.m_fGameTime);
     M_oGameTime.onTimesUp += OnTimesUp;
 }
Exemplo n.º 4
0
 public RoundManager(MissingLetterGame _game)
 {
     m_oGame         = _game;
     m_iCurrentRound = -1;
 }