mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
16 lines
228 B
C
16 lines
228 B
C
|
#ifndef __EQUICKBUILDSTATE__H__
|
||
|
#define __EQUICKBUILDSTATE__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
enum class eQuickBuildState : uint32_t {
|
||
|
OPEN,
|
||
|
COMPLETED = 2,
|
||
|
RESETTING = 4,
|
||
|
BUILDING,
|
||
|
INCOMPLETE
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //!__EQUICKBUILDSTATE__H__
|