mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
4976701f37
* breakout object bits into enum class tested that things still work as expected use the inplace set bits where appropiate * add inline
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__
|