Esempio n. 1
0
 public void BeginTimer()
 {
     AnnounceDeathMatch();
     m_ScoreTable = new Hashtable();
     m_MatchTimer = new MatchTimer(this, m_MatchMin);
     m_MatchTimer.Start();
 }
Esempio n. 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);
 }
Esempio n. 3
0
 public void BeginTimer()
 {
     m_MatchTimer = new MatchTimer(this, m_MatchMin);
     m_MatchTimer.Start();
 }
Esempio n. 4
0
 public void BeginTimer()
 {
     m_MatchTimer = new MatchTimer(this, m_MatchMin);
     m_MatchTimer.Start();
 }