]> Dogcows Code - chaz/carfire/blobdiff - Project06/CS 3505 Project 06/CS 3505 Project 06/ChatPacket.cs
Event packets implemented with complete latency readjusting.
[chaz/carfire] / Project06 / CS 3505 Project 06 / CS 3505 Project 06 / ChatPacket.cs
diff --git a/Project06/CS 3505 Project 06/CS 3505 Project 06/ChatPacket.cs b/Project06/CS 3505 Project 06/CS 3505 Project 06/ChatPacket.cs
deleted file mode 100644 (file)
index 15e4470..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-using System;\r
-using System.Collections.Generic;\r
-using System.Linq;\r
-using System.Text;\r
-using Microsoft.Xna.Framework.Net;\r
-\r
-namespace CS_3505_Project_06\r
-{\r
-    /// <summary>\r
-    /// Small container class for the information concerning a chat packet.\r
-    /// It is immutable.\r
-    /// </summary>\r
-    public class ChatPacket\r
-    {\r
-        // Private member variables\r
-        #region Instance Variables\r
-\r
-        NetworkGamer mSender;\r
-        String mMessage;\r
-\r
-        #endregion\r
-\r
-\r
-        /// <summary>\r
-        /// Get the game who sent the chat packet.\r
-        /// </summary>\r
-        public NetworkGamer Sender\r
-        {\r
-            get { return mSender; }\r
-        }\r
-\r
-        /// <summary>\r
-        /// Get the message that was sent by the sender.\r
-        /// </summary>\r
-        public String Message\r
-        {\r
-            get { return mMessage; }\r
-        }\r
-\r
-\r
-        /// <summary>\r
-        /// Construct a chat packet with contents.\r
-        /// </summary>\r
-        /// <param name="sender">The chat sender.</param>\r
-        /// <param name="message">The chat message.</param>\r
-        public ChatPacket(NetworkGamer sender, String message)\r
-        {\r
-            mSender = sender;\r
-            mMessage = message;\r
-        }\r
-    }\r
-}\r
This page took 0.02837 seconds and 4 git commands to generate.