10 lines
127 B
C
10 lines
127 B
C
#ifndef PACKETTYPE_H
|
|
#define PACKETTYPE_H
|
|
|
|
typedef enum {
|
|
PACKET_TYPE_NONE = 0,
|
|
// Add more here
|
|
} PacketType;
|
|
|
|
#endif
|