restored header guards

This commit is contained in:
jadebenn
2023-12-15 12:57:13 -06:00
parent 054371dd01
commit e01fbfcc64
4 changed files with 16 additions and 6 deletions

View File

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

View File

@@ -1,6 +1,5 @@
#pragma once
#include <cstdint>
#ifndef __EPETABILITYTYPE__H__
#define __EPETABILITYTYPE__H__
enum class ePetAbilityType : int32_t {
Invalid,
@@ -8,3 +7,5 @@ enum class ePetAbilityType : int32_t {
JumpOnObject,
DigAtPosition
};
#endif //!__EPETABILITYTYPE__H__