Exemple #1
0
 public ScoutAnt(Point location, Point speed, BlueColony colony) : base(location, speed, colony)
 {
     this.bcolony = colony;
     randomPos();
 }
Exemple #2
0
 public FarmerAnt(Point location, Point speed, BlueColony colony) : base(location, speed, colony)
 {
     this.colony = colony;
     Destination = MyColony.World().Colonies().First().Location;
 }
Exemple #3
0
 public WorkerAnt(Point location, Point speed, BlueColony colony) : base(location, speed, colony)
 {
     this.colony = colony;
 }