mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-23 14:07:20 +00:00
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__
|