mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
14 lines
206 B
C
14 lines
206 B
C
|
#ifndef __EOBJECTBITS__H__
|
||
|
#define __EOBJECTBITS__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
enum class eObjectBits : size_t {
|
||
|
PERSISTENT = 32,
|
||
|
CLIENT = 46,
|
||
|
SPAWNED = 58,
|
||
|
CHARACTER = 60
|
||
|
};
|
||
|
|
||
|
#endif //!__EOBJECTBITS__H__
|