16 lines
356 B
C#
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);
|
|
}
|
|
}
|