Ejemplo n.º 1
0
 public _PACKET_HALL_QCMD_CREATE_ROOM(string value) : base(102, 1)
 {
     this.dto = new _DTO_string(value);
 }
Ejemplo n.º 2
0
 protected override void InternalDeserialize(StreamBuffer buffer)
 {
     base.InternalDeserialize(buffer);
     this.dto = new _DTO_string();
     this.dto.Deserialize(buffer);
 }
Ejemplo n.º 3
0
 public static void CALL_ROOM_QCMD_CHANGE_HERO(this INetTransmitter transmitter, _DTO_string dto)
 {
     transmitter.Send(new _PACKET_ROOM_QCMD_CHANGE_HERO(dto));
 }
Ejemplo n.º 4
0
 public _PACKET_HALL_QCMD_CREATE_ROOM(_DTO_string dto) : base(102, 1)
 {
     this.dto = dto;
 }
Ejemplo n.º 5
0
 public static void CALL_USER_QCMD_CREATE_USER(this INetTransmitter transmitter, _DTO_string dto)
 {
     transmitter.Send(new _PACKET_USER_QCMD_CREATE_USER(dto));
 }
Ejemplo n.º 6
0
 public static void CALL_HALL_QCMD_CREATE_ROOM(this INetTransmitter transmitter, _DTO_string dto)
 {
     transmitter.Send(new _PACKET_HALL_QCMD_CREATE_ROOM(dto));
 }
Ejemplo n.º 7
0
 public static _PACKET_ROOM_QCMD_CHANGE_MAP PACKET_ROOM_QCMD_CHANGE_MAP(_DTO_string dto)
 {
     return(new _PACKET_ROOM_QCMD_CHANGE_MAP(dto));
 }
Ejemplo n.º 8
0
 public static _PACKET_ROOM_QCMD_CHANGE_HERO PACKET_ROOM_QCMD_CHANGE_HERO(_DTO_string dto)
 {
     return(new _PACKET_ROOM_QCMD_CHANGE_HERO(dto));
 }
Ejemplo n.º 9
0
 public static _PACKET_USER_QCMD_CREATE_USER PACKET_USER_QCMD_CREATE_USER(_DTO_string dto)
 {
     return(new _PACKET_USER_QCMD_CREATE_USER(dto));
 }
Ejemplo n.º 10
0
 public static _PACKET_HALL_QCMD_CREATE_ROOM PACKET_HALL_QCMD_CREATE_ROOM(_DTO_string dto)
 {
     return(new _PACKET_HALL_QCMD_CREATE_ROOM(dto));
 }
Ejemplo n.º 11
0
 public _PACKET_USER_QCMD_CREATE_USER(string value) : base(101, 2)
 {
     this.dto = new _DTO_string(value);
 }
Ejemplo n.º 12
0
 public _PACKET_USER_QCMD_CREATE_USER(_DTO_string dto) : base(101, 2)
 {
     this.dto = dto;
 }
 public _PACKET_ROOM_QCMD_CHANGE_MAP(string value) : base(103, 2)
 {
     this.dto = new _DTO_string(value);
 }
 public _PACKET_ROOM_QCMD_CHANGE_MAP(_DTO_string dto) : base(103, 2)
 {
     this.dto = dto;
 }
 public _PACKET_ROOM_QCMD_CHANGE_HERO(_DTO_string dto) : base(103, 3)
 {
     this.dto = dto;
 }