mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-15 19:11:20 +00:00
14 lines
191 B
C++
14 lines
191 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
|