2 using System.Collections.Generic;
5 using Microsoft.Xna.Framework.Net;
10 /// Small container class for the information concerning a chat packet.
15 // Private member variables
16 #region Instance Variables
25 /// Get the sender who sent the chat packet.
27 public NetworkGamer Sender
29 get { return mSender; }
33 /// Get the message that was sent by the sender.
37 get { return mMessage; }
42 /// Construct a chat packet with contents.
44 /// <param name="sender">The chat sender.</param>
45 /// <param name="message">The chat message.</param>
46 public ChatInfo(NetworkGamer sender, String message)