BC.Models.Game.Game C# (CSharp) 메소드

Game() 공개 메소드

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