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