mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-17 12:01:22 +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__
|