Beispiel #1
0
 public static void CALL_ROOM_ACMD_ROOM_INFO(this INetTransmitter transmitter, _DTO_room_info_detail dto)
 {
     transmitter.Send(new _PACKET_ROOM_ACMD_ROOM_INFO(dto));
 }
Beispiel #2
0
 public static _PACKET_ROOM_ACMD_ROOM_INFO PACKET_ROOM_ACMD_ROOM_INFO(_DTO_room_info_detail dto)
 {
     return(new _PACKET_ROOM_ACMD_ROOM_INFO(dto));
 }
Beispiel #3
0
 public _PACKET_ROOM_ACMD_ROOM_INFO(string host, string map, string name, _DTO_player_info[] players, int roomId) : base(103, 32001)
 {
     this.dto = new _DTO_room_info_detail(host, map, name, players, roomId);
 }
Beispiel #4
0
 protected override void InternalDeserialize(StreamBuffer buffer)
 {
     base.InternalDeserialize(buffer);
     this.dto = new _DTO_room_info_detail();
     this.dto.Deserialize(buffer);
 }
Beispiel #5
0
 public _PACKET_ROOM_ACMD_ROOM_INFO(_DTO_room_info_detail dto) : base(103, 32001)
 {
     this.dto = dto;
 }