示例#1
0
文件: Ant.cs 项目: DSobscure/IANT
 public Ant(AntProperties properties, Nest nest)
 {
     this.properties = properties;
     ID = AntCounter;
     AntCounter++;
     poisonHP       = MaxHP;
     this.nest      = nest;
     hpRatioPreStay = HPRatio;
 }
示例#2
0
 public void BindNest(Nest nest)
 {
     this.nest            = nest;
     nest.distributionMap = nest.distributionMaps[0];
 }