Files
OpenRA/OpenRa.Game/Traits/GpsSatellite.cs
2010-01-08 19:35:43 +13:00

23 lines
408 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.Game.Traits
{
class GpsSatellite
{
public GpsSatellite(Actor self)
{
// TODO: connect this to a special power that calls Activate();
Activate(self);
}
public void Activate(Actor self)
{
// TODO: Launch satellite
self.Owner.Shroud.RevealAll();
}
}
}