mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-04-25 11:28:27 -05:00
6aa90ad5b2
* Breakout rest of the enums from dcommonvars so we don't have to deal with merge conflicts ePlayerFlags is not a scoped enum, yet, due to it's complexity * address feedback * make player flag types consistent * fix typo
13 lines
216 B
C++
13 lines
216 B
C++
#ifndef __EREPLICAPACKETTYPE__H__
|
|
#define __EREPLICAPACKETTYPE__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eReplicaPacketType : uint8_t {
|
|
CONSTRUCTION,
|
|
SERIALIZATION,
|
|
DESTRUCTION
|
|
};
|
|
|
|
#endif //!__EREPLICAPACKETTYPE__H__
|