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