mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
15954413ae
* rename rebuild to quickbuild * fix includes
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__
|