[client] Add message types to PixelMessage
This commit is contained in:
parent
2c3e5043ca
commit
070b7588d8
1 changed files with 11 additions and 0 deletions
|
@ -16,6 +16,17 @@ public:
|
||||||
/// </summary>
|
/// </summary>
|
||||||
static const unsigned int MESSAGE_HEADER_LENGTH = 12;
|
static const unsigned int MESSAGE_HEADER_LENGTH = 12;
|
||||||
|
|
||||||
|
static const unsigned int TYPE_RESET = 0;
|
||||||
|
static const unsigned int TYPE_ERROR = 1;
|
||||||
|
static const unsigned int TYPE_HANDSHAKEREQUEST = 5;
|
||||||
|
static const unsigned int TYPE_HANDSHAKERESPONSE = 6;
|
||||||
|
static const unsigned int TYPE_MOVE = 11;
|
||||||
|
static const unsigned int TYPE_COMMANDOK = 12;
|
||||||
|
static const unsigned int TYPE_COMMANDCOMPLETE = 13;
|
||||||
|
static const unsigned int TYPE_COMMANDFAILED = 14;
|
||||||
|
static const unsigned int TYPE_INFOREQUEST = 20;
|
||||||
|
static const unsigned int TYPE_INFORESPONSE = 21;
|
||||||
|
|
||||||
// The protocol version associated with this message.
|
// The protocol version associated with this message.
|
||||||
unsigned short ProtocolVersion = 1;
|
unsigned short ProtocolVersion = 1;
|
||||||
unsigned short MessageType = 1;
|
unsigned short MessageType = 1;
|
||||||
|
|
Reference in a new issue