Пример #1
0
 public static void CALL_ROOM_ACMD_BEGIN_FIGHT(this INetTransmitter transmitter, _DTO_begin_fight dto)
 {
     transmitter.Send(new _PACKET_ROOM_ACMD_BEGIN_FIGHT(dto));
 }
Пример #2
0
 public static _PACKET_ROOM_ACMD_BEGIN_FIGHT PACKET_ROOM_ACMD_BEGIN_FIGHT(_DTO_begin_fight dto)
 {
     return(new _PACKET_ROOM_ACMD_BEGIN_FIGHT(dto));
 }
 public _PACKET_ROOM_ACMD_BEGIN_FIGHT(string host, string map, string name, _DTO_player_info[] players, int roomId) : base(103, 32002)
 {
     this.dto = new _DTO_begin_fight(host, map, name, players, roomId);
 }
 protected override void InternalDeserialize(StreamBuffer buffer)
 {
     base.InternalDeserialize(buffer);
     this.dto = new _DTO_begin_fight();
     this.dto.Deserialize(buffer);
 }
 public _PACKET_ROOM_ACMD_BEGIN_FIGHT(_DTO_begin_fight dto) : base(103, 32002)
 {
     this.dto = dto;
 }