add most pet messages

This commit is contained in:
jadebenn
2024-03-08 18:43:40 -06:00
parent 9a9254b583
commit e832dfbf71
8 changed files with 60 additions and 20 deletions

View File

@@ -3,6 +3,8 @@
#include <cstdint>
#include "magic_enum.hpp"
enum class eHelpType : int32_t {
NONE = 0,
UNLOCK_MINIMAP = 2,
@@ -37,4 +39,10 @@ enum class eHelpType : int32_t {
UI_INVENTORY_FULL_CANNOT_PICKUP_ITEM = 86
};
template <>
struct magic_enum::customize::enum_range<eHelpType> {
static constexpr int min = 0;
static constexpr int max = 86;
};
#endif //!__EHELPTYPE__H__