public void Launch(Actor atek, SupportPowerInfo info) { atek.World.Add(new DelayedAction(((GpsPowerInfo)info).RevealDelay * 25, () => { launched = true; RefreshGps(atek); })); }
public void Launch(Actor atek, SupportPowerInfo info) { atek.World.Add(new DelayedAction(((GpsPowerInfo)info).RevealDelay * 25, () => { Launched = true; RefreshGps(atek); })); }
public SupportPower(Actor self, SupportPowerInfo info) { Info = info; this.self = self; }
public SupportPowerWithNotify(Actor self, SupportPowerInfo info) : base(self, info) { }