예제 #1
0
파일: GameState.cs 프로젝트: LwPol/Makao
 public void PassPlayer()
 {
     if (--playersToGo == 0)
     {
         DemandExpired?.Invoke(this, EventArgs.Empty);
     }
 }
예제 #2
0
파일: GameState.cs 프로젝트: LwPol/Makao
 public void Deactivate()
 {
     playersToGo = 0;
     DemandExpired?.Invoke(this, EventArgs.Empty);
 }