コード例 #1
0
ファイル: GameManager.cs プロジェクト: VinhoSantos/Catan
 public BoardGame UpdateGame(BoardGame game)
 {
     throw new System.NotImplementedException();
 }
コード例 #2
0
ファイル: GamePlayer.cs プロジェクト: VinhoSantos/Catan
 public GamePlayer(BoardGame game, Player player, PlayerColor color)
 {
     Game   = game;
     Player = player;
     Color  = color;
 }
コード例 #3
0
 public ActionProcessor(BoardGame game)
 {
     _game      = game;
     _validator = new ActionValidator(game);
 }