Esempio n. 1
0
            internal ChatRoomInfoCallback(MsgClientChatRoomInfo msg, byte[] payload)
            {
                ChatRoomID = msg.SteamIdChat;
                Type       = msg.Type;

                // todo: handle inner payload based on the type similar to ChatMemberInfoCallback
            }
Esempio n. 2
0
            internal ChatRoomInfoCallback( MsgClientChatRoomInfo msg, byte[] payload )
            {
                ChatRoomID = msg.SteamIdChat;
                Type = msg.Type;

                // todo: handle inner payload based on the type similar to ChatMemberInfoCallback
            }
Esempio n. 3
0
		public MsgClientChatRoomInfo()
		{
			steamIdChat = 0;
			Type = 0;
		}
Esempio n. 4
0
		public void Deserialize( Stream stream )
		{
			BinaryReader br = new BinaryReader( stream );

			steamIdChat = br.ReadUInt64();
			Type = (EChatInfoType)br.ReadInt32();
		}
Esempio n. 5
0
		public MsgClientChatMemberInfo()
		{
			steamIdChat = 0;
			Type = 0;
		}