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