Files
OpenRA/OpenRa.Game/SupportPowers/NullPower.cs
2010-01-08 21:50:27 +13:00

17 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.Game.SupportPowers
{
class NullPower : ISupportPowerImpl
{
public void Activate(SupportPower p)
{
// if this was a real power, i'd do something here!
throw new NotImplementedException();
}
}
}