BC.Models.Game.Game C# (CSharp) Method

Game() public method

public Game ( ) : System
return System
        public Game()
        {
            this.State = GameState.WaitingForOpponent;
            this.Guesses = new HashSet<Guess>();
        }
Game