Files
OpenRA/OpenRa.Game/SupportPowers/ISupportPowerImpl.cs
2010-01-17 09:30:53 +13:00

16 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.SupportPowers
{
public interface ISupportPowerImpl
{
void Activate(SupportPower p);
void OnFireNotification(Actor target, int2 xy);
void IsChargingNotification(SupportPower p);
void IsReadyNotification(SupportPower p);
}
}