示例#1
0
 public RallyPoint(Actor self, RallyPointInfo info)
 {
     rallyPoint = self.Location + new CVec(info.RallyPoint[0], info.RallyPoint[1]);
     self.World.AddFrameEndTask(w => w.Add(new Effects.RallyPoint(self, info.IndicatorPalettePrefix)));
 }
示例#2
0
 public RallyPoint(Actor self, RallyPointInfo info)
 {
     Location = self.Location + info.RallyPoint;
     self.World.AddFrameEndTask(w => w.Add(new Effects.RallyPoint(self, info.IndicatorPalettePrefix)));
 }
示例#3
0
		public RallyPoint(Actor self, RallyPointInfo info)
		{
			Location = self.Location + info.RallyPoint;
			self.World.AddFrameEndTask(w => w.Add(new Effects.RallyPoint(self, info.IndicatorPalettePrefix)));
		}
示例#4
0
 public RallyPoint(Actor self, RallyPointInfo info)
 {
     rallyPoint = self.Location + new CVec(info.RallyPoint[0], info.RallyPoint[1]);
     self.World.AddFrameEndTask(w => w.Add(new Effects.RallyPoint(self, info.IndicatorPalettePrefix)));
 }