public static void CALL_GENERIC_QCMD_SYNC_TIME(this INetTransmitter transmitter, _DTO_long dto) { transmitter.Send(new _PACKET_GENERIC_QCMD_SYNC_TIME(dto)); }
public static _PACKET_GENERIC_QCMD_SYNC_TIME PACKET_GENERIC_QCMD_SYNC_TIME(_DTO_long dto) { return(new _PACKET_GENERIC_QCMD_SYNC_TIME(dto)); }
public _PACKET_GENERIC_QCMD_SYNC_TIME(long value) : base(100, 0) { this.dto = new _DTO_long(value); }
protected override void InternalDeserialize(StreamBuffer buffer) { base.InternalDeserialize(buffer); this.dto = new _DTO_long(); this.dto.Deserialize(buffer); }
public _PACKET_GENERIC_QCMD_SYNC_TIME(_DTO_long dto) : base(100, 0) { this.dto = dto; }