mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-25 15:07:28 +00:00
a4bf11502f
no crashes
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__
|