]> Dogcows Code - chaz/carfire/blobdiff - Project06/CS 3505 Project 06/CS 3505 Project 06/ChatInfo.cs
Event packets implemented with complete latency readjusting.
[chaz/carfire] / Project06 / CS 3505 Project 06 / CS 3505 Project 06 / ChatInfo.cs
similarity index 84%
rename from Project06/CS 3505 Project 06/CS 3505 Project 06/ChatPacket.cs
rename to Project06/CS 3505 Project 06/CS 3505 Project 06/ChatInfo.cs
index 15e4470d888c3c8bc82d93c75e5fce211fea0205..39af42083eeec1f2a95f101e38f546d7cf25cf80 100644 (file)
@@ -10,7 +10,7 @@ namespace CS_3505_Project_06
     /// Small container class for the information concerning a chat packet.\r
     /// It is immutable.\r
     /// </summary>\r
-    public class ChatPacket\r
+    public class ChatInfo\r
     {\r
         // Private member variables\r
         #region Instance Variables\r
@@ -22,7 +22,7 @@ namespace CS_3505_Project_06
 \r
 \r
         /// <summary>\r
-        /// Get the game who sent the chat packet.\r
+        /// Get the sender who sent the chat packet.\r
         /// </summary>\r
         public NetworkGamer Sender\r
         {\r
@@ -43,7 +43,7 @@ namespace CS_3505_Project_06
         /// </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
+        public ChatInfo(NetworkGamer sender, String message)\r
         {\r
             mSender = sender;\r
             mMessage = message;\r
This page took 0.022823 seconds and 4 git commands to generate.