mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 05:57:20 +00:00
c168f6c970
into the model, item, and mutable model behaviors
14 lines
215 B
C++
14 lines
215 B
C++
|
|
#ifndef __EUGCMODERATIONSTATUS__H__
|
|
#define __EUGCMODERATIONSTATUS__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eUgcModerationStatus : uint32_t {
|
|
NoStatus,
|
|
Approved,
|
|
Rejected,
|
|
};
|
|
|
|
#endif //!__EUGCMODERATIONSTATUS__H__
|