Beispiel #1
0
 public BasePlayer(PlayerInfo info, IEnumerable <Ship> ships, IEnumerable <Planet> planets, BaseRace race)
 {
     _playerInfo = info;
     _ships      = new List <Ship>(ships);
     _planets    = new List <Planet>(planets);
     _hand       = new Hand();
     AlienRace   = race;
 }
Beispiel #2
0
 public HumanPlayer(PlayerInfo info, IEnumerable <Ship> ships, IEnumerable <Planet> planets, BaseRace race)
     : base(info, ships, planets, race)
 {
 }