no crashes
This commit is contained in:
Aaron Kimbre
2023-11-21 14:16:56 -06:00
parent e5f62e870b
commit a4bf11502f
17 changed files with 286 additions and 94 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include <cstdint>
#ifndef __EGUILDLEAVEREASON__H__
#define __EGUILDLEAVEREASON__H__
enum class eGuildLeaveReason : uint8_t {
LEFT = 0,
KICKED
};
#endif //!__EGUILDLEAVEREASON__H__