コード例 #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];
 }