diff options
Diffstat (limited to 'ShiftOS_TheReturn/Server.cs')
| -rw-r--r-- | ShiftOS_TheReturn/Server.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ShiftOS_TheReturn/Server.cs b/ShiftOS_TheReturn/Server.cs index ddbd15b..6edef9e 100644 --- a/ShiftOS_TheReturn/Server.cs +++ b/ShiftOS_TheReturn/Server.cs @@ -7,15 +7,17 @@ using ShiftOS.Objects; namespace ShiftOS.Engine { + [Obsolete("Old code.")] public interface Server { /// <summary> /// Occurs when someone sends a message to the server. /// </summary> /// <param name="msg">The message from the client.</param> - void MessageReceived(ServerMessage msg); + void MessageReceived(dynamic msg); } + [Obsolete("Old code.")] [AttributeUsage(AttributeTargets.Class, AllowMultiple=false)] public class ServerAttribute : Attribute { |
