mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-21 11:59:37 -06:00
14 lines
233 B
C++
14 lines
233 B
C++
#ifndef EQUICKBUILDFAILREASON_H
|
|
#define EQUICKBUILDFAILREASON_H
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eQuickBuildFailReason : uint32_t {
|
|
NOT_GIVEN,
|
|
OUT_OF_IMAGINATION,
|
|
CANCELED_EARLY,
|
|
BUILD_ENDED
|
|
};
|
|
|
|
#endif //!EQUICKBUILDFAILREASON_H
|