DarkflameServer/dCommon/dEnums/eGuildLeaveReason.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
200 B
C
Raw Normal View History

2023-11-21 20:16:56 +00:00
#pragma once
#include <cstdint>
#ifndef __EGUILDLEAVEREASON__H__
#define __EGUILDLEAVEREASON__H__
enum class eGuildLeaveReason : uint8_t {
LEFT = 0,
KICKED
};
#endif //!__EGUILDLEAVEREASON__H__