support power impl pretty much done

This commit is contained in:
Chris Forbes
2010-01-08 21:50:27 +13:00
parent 6ff0f82c02
commit 28746d0bcd
7 changed files with 84 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.Game.SupportPowers
{
interface ISupportPowerImpl
{
void Activate(SupportPower p);
}
}

View File

@@ -0,0 +1,16 @@
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();
}
}
}