Ejemplo n.º 1
0
 public void PassPlayer()
 {
     if (--playersToGo == 0)
     {
         DemandExpired?.Invoke(this, EventArgs.Empty);
     }
 }
Ejemplo n.º 2
0
 public void Deactivate()
 {
     playersToGo = 0;
     DemandExpired?.Invoke(this, EventArgs.Empty);
 }