From 76b4d702e35ddead6d6cea3373e7e12491b2df48 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 30 Jun 2015 15:11:50 +1200 Subject: [PATCH] Remove unused INotify interface Signed-off-by: Chris Forbes --- OpenRA.Game/Traits/TraitsInterfaces.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/OpenRA.Game/Traits/TraitsInterfaces.cs b/OpenRA.Game/Traits/TraitsInterfaces.cs index 5ff057493b..541e8cf7fe 100644 --- a/OpenRA.Game/Traits/TraitsInterfaces.cs +++ b/OpenRA.Game/Traits/TraitsInterfaces.cs @@ -85,7 +85,6 @@ namespace OpenRA.Traits public interface IResolveOrder { void ResolveOrder(Actor self, Order order); } public interface IValidateOrder { bool OrderValidation(OrderManager orderManager, World world, int clientId, Order order); } public interface IOrderVoice { string VoicePhraseForOrder(Actor self, Order order); } - public interface INotify { void Play(Player p, string notification); } public interface INotifyCreated { void Created(Actor self); } public interface INotifyAddedToWorld { void AddedToWorld(Actor self); } public interface INotifyRemovedFromWorld { void RemovedFromWorld(Actor self); }