aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/Server.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-07-13 21:30:04 -0400
committerMichael <[email protected]>2017-07-13 21:30:04 -0400
commite929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b (patch)
treeb88810b1dadf0c3893cadeaebe84351784ef18de /ShiftOS_TheReturn/Server.cs
parente92af1bc7fe5cd5860206061f4ff261b3339cc51 (diff)
downloadshiftos_thereturn-e929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b.tar.gz
shiftos_thereturn-e929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b.tar.bz2
shiftos_thereturn-e929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b.zip
Delete a LOT of obsolete code
Diffstat (limited to 'ShiftOS_TheReturn/Server.cs')
-rw-r--r--ShiftOS_TheReturn/Server.cs4
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
{