コード例 #1
0
ファイル: Player.cs プロジェクト: rpwjanzen/2HourGame
 public Player(PlayerIndex playerIndex, IShip ship, Island homeIsland, Map map)
 {
     this.playerIndex = playerIndex;
     this.ship = ship;
     this.homeIsland = homeIsland;
     this.map = map;
 }
コード例 #2
0
ファイル: PlayerFactory.cs プロジェクト: rpwjanzen/2HourGame
 public PlayerFactory(Map map)
 {
     this.map = map;
 }