16 lines
141 B
C++
16 lines
141 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#define TIMEOUT 20
|
|
|
|
enum PACKET : uint8_t {
|
|
CONNECT,
|
|
DISCONNECT,
|
|
PING,
|
|
ACK,
|
|
IDS,
|
|
ENTITIES,
|
|
EVENT
|
|
};
|