コード例 #1
0
ファイル: Global.asax.cs プロジェクト: anton-volodko/game-set
 public void StartNewGame()
 {
     CurrentGame = new Game();
 }
コード例 #2
0
ファイル: Global.asax.cs プロジェクト: anton-volodko/game-set
 public MvcApplication()
 {
     ActiveUsers = new List<User>();
     CurrentGame = new Game();
 }