slight tidy in InfiltrateForSupportPower

This commit is contained in:
Chris Forbes
2012-04-06 17:36:39 +12:00
parent b39eeddb45
commit 4a76e2ad33

View File

@@ -16,14 +16,14 @@ namespace OpenRA.Mods.RA
{
class InfiltrateForSupportPowerInfo : ITraitInfo
{
[ActorReference]
public readonly string Proxy = null;
[ActorReference] public readonly string Proxy = null;
public object Create(ActorInitializer init) { return new InfiltrateForSupportPower(this); }
}
class InfiltrateForSupportPower : IAcceptSpy
{
InfiltrateForSupportPowerInfo Info;
public InfiltrateForSupportPower(InfiltrateForSupportPowerInfo info)
{
Info = info;