예제 #1
0
파일: Game.cs 프로젝트: cloeys/Roulette
 public void StartTurn()
 {
     CurrentTurn = new Turn(this);
     TurnHistory.Add(CurrentTurn);
 }
예제 #2
0
파일: Game.cs 프로젝트: cloeys/Roulette
 public Tile GetWinningTile(Turn turn)
 {
     return(turn.WinningTile);
 }