public static void CALL_GENERIC_ACMD_SYNC_TIME(this INetTransmitter transmitter, _DTO_sync_time dto)
 {
     transmitter.Send(new _PACKET_GENERIC_ACMD_SYNC_TIME(dto));
 }
 public static _PACKET_GENERIC_ACMD_SYNC_TIME PACKET_GENERIC_ACMD_SYNC_TIME(_DTO_sync_time dto)
 {
     return(new _PACKET_GENERIC_ACMD_SYNC_TIME(dto));
 }
 public _PACKET_GENERIC_ACMD_SYNC_TIME(long clientTime, long serverTime) : base(100, 32001)
 {
     this.dto = new _DTO_sync_time(clientTime, serverTime);
 }
 protected override void InternalDeserialize(StreamBuffer buffer)
 {
     base.InternalDeserialize(buffer);
     this.dto = new _DTO_sync_time();
     this.dto.Deserialize(buffer);
 }
 public _PACKET_GENERIC_ACMD_SYNC_TIME(_DTO_sync_time dto) : base(100, 32001)
 {
     this.dto = dto;
 }