mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-25 23:17:28 +00:00
13 lines
200 B
C
13 lines
200 B
C
|
#pragma once
|
||
|
#include <cstdint>
|
||
|
|
||
|
#ifndef __EGUILDLEAVEREASON__H__
|
||
|
#define __EGUILDLEAVEREASON__H__
|
||
|
|
||
|
enum class eGuildLeaveReason : uint8_t {
|
||
|
LEFT = 0,
|
||
|
KICKED
|
||
|
};
|
||
|
|
||
|
#endif //!__EGUILDLEAVEREASON__H__
|