コード例 #1
0
 public void BeginTimer()
 {
     AnnounceDeathMatch();
     m_ScoreTable = new Hashtable();
     m_MatchTimer = new MatchTimer(this, m_MatchMin);
     m_MatchTimer.Start();
 }
コード例 #2
0
 protected virtual void OnMatchStarted()
 {
     // Initialize the Game itself
     game = new Game(pitch, homeTeamData.Team, awayTeamData.Team, matchStanding.TimeElapsed);
     // When the match starts
     // Start the timer as well
     matchTimer.Start();
     MatchStarted?.Invoke(this, EventArgs.Empty);
 }
コード例 #3
0
ファイル: DMStone.cs プロジェクト: FreeReign/imaginenation
 public void BeginTimer()
 {
     m_MatchTimer = new MatchTimer(this, m_MatchMin);
     m_MatchTimer.Start();
 }
コード例 #4
0
ファイル: DMStone.cs プロジェクト: rberiot/imaginenation
 public void BeginTimer()
 {
     m_MatchTimer = new MatchTimer(this, m_MatchMin);
     m_MatchTimer.Start();
 }