Ejemplo n.º 1
0
 public ClientGuildChatEventArgs(GuildChatInfo i)
 {
     info = i;
 }
Ejemplo n.º 2
0
        public static GuildChatInfo RecvGuildChat(Packet p)
        {
            p.Skip(2);
            byte type = p.ReadByte();
            string message = p.ReadString();

            GuildChatInfo i = new GuildChatInfo
            {
                Type = type,
                Message = message
            };

            return i;
        }