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