mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
13 lines
201 B
C
13 lines
201 B
C
|
#ifndef __EOBJECTWORLDSTATE__H__
|
||
|
#define __EOBJECTWORLDSTATE__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
enum class eObjectWorldState : uint32_t {
|
||
|
INWORLD,
|
||
|
ATTACHED,
|
||
|
INVENTORY
|
||
|
};
|
||
|
|
||
|
#endif //!__EOBJECTWORLDSTATE__H__
|