Exemplo n.º 1
0
 public Fleet(int player, Dictionary <int, int> _ships, Planet planet)
 {
     Owner  = player;
     Ships  = _ships;
     target = planet;
 }
Exemplo n.º 2
0
 public Fleet(int player, Planet planet)
 {
     Owner  = player;
     target = planet;
 }