// Copyright 2018 RED Software, LLC. All Rights Reserved. using IgniteEngine.Networking; namespace IgniteEngine.Protocols { public class PROTO_NC_USER_CLIENT_RIGHTVERSION_CHECK_ACK : NetworkMessage { public PROTO_NC_USER_CLIENT_RIGHTVERSION_CHECK_ACK(byte xtrapServerKeyLength, byte[] xtrapServerKey) : base(NetworkCommand.NC_USER_CLIENT_RIGHTVERSION_CHECK_ACK) { Write(xtrapServerKeyLength); Write(xtrapServerKey); } } }