Added ConsoleCommand, and an example to go with it

This commit is contained in:
Chicken man
2014-05-04 10:00:41 -04:00
parent 0783f60ba1
commit fa4b157b42
8 changed files with 217 additions and 3 deletions

View File

@@ -48,4 +48,5 @@ namespace OpenRA.Mods.RA
public interface INotifyTransform { void OnTransform(Actor self); }
public interface INotifyTransformed { void OnTransformed(Actor toActor); }
public interface INotifyAttack { void Attacking(Actor self, Target target, Armament a, Barrel barrel); }
public interface INotifyChat { bool OnChat(string from, string message); }
}