added treasure dig menu prompts and help messages

This commit is contained in:
jadebenn
2023-12-14 01:33:49 -06:00
parent 2a4cfe3447
commit 1b8f10fcfb
10 changed files with 145 additions and 82 deletions

View File

@@ -1,6 +1,4 @@
#ifndef __EHELPTYPE__H__
#define __EHELPTYPE__H__
#pragma once
#include <cstdint>
@@ -37,5 +35,3 @@ enum class eHelpType : int32_t {
PET_DESPAWN_TAMING_NEW_PET = 70,
UI_INVENTORY_FULL_CANNOT_PICKUP_ITEM = 86
};
#endif //!__EHELPTYPE__H__

View File

@@ -0,0 +1,10 @@
#pragma once
#include <cstdint>
enum class ePetAbilityType : int32_t {
Invalid,
GoToObject,
JumpOnObject,
DigAtPosition
};