Move Console commands to Mods.Common

This commit is contained in:
reaperrr
2014-10-03 00:11:11 +02:00
parent ab30e8a993
commit f03617bbe5
9 changed files with 27 additions and 9 deletions

View File

@@ -50,6 +50,5 @@ namespace OpenRA.Mods.RA
public interface INotifyParachuteLanded { void OnLanded(); }
public interface INotifyTransform { void BeforeTransform(Actor self); void OnTransform(Actor self); void AfterTransform(Actor toActor); }
public interface INotifyAttack { void Attacking(Actor self, Target target, Armament a, Barrel barrel); }
public interface INotifyChat { bool OnChat(string from, string message); }
public interface IRenderActorPreviewInfo { IEnumerable<IActorPreview> RenderPreview(ActorPreviewInitializer init); }
}