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