public static bool CanCloseGame(bool isThePlayerFirst, SimBaseRoundState state)
 {
     return isThePlayerFirst && state.CanClose;
 }
Example #2
0
 public void SetState(SimBaseRoundState newState)
 {
     this.State = newState;
 }
 public static bool CanCloseGame(bool isThePlayerFirst, SimBaseRoundState state)
 {
     return(isThePlayerFirst && state.CanClose);
 }
Example #4
0
 public void SetState(SimBaseRoundState newState)
 {
     this.State = newState;
 }