mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-25 06:53:35 +00:00
restored header guards
This commit is contained in:
parent
054371dd01
commit
e01fbfcc64
@ -1,4 +1,5 @@
|
|||||||
#pragma once
|
#ifndef __EHELPTYPE__H__
|
||||||
|
#define __EHELPTYPE__H__
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
@ -35,3 +36,5 @@ enum class eHelpType : int32_t {
|
|||||||
PET_DESPAWN_TAMING_NEW_PET = 70,
|
PET_DESPAWN_TAMING_NEW_PET = 70,
|
||||||
UI_INVENTORY_FULL_CANNOT_PICKUP_ITEM = 86
|
UI_INVENTORY_FULL_CANNOT_PICKUP_ITEM = 86
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif //!__EHELPTYPE__H__
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
#pragma once
|
#ifndef __EPETABILITYTYPE__H__
|
||||||
|
#define __EPETABILITYTYPE__H__
|
||||||
#include <cstdint>
|
|
||||||
|
|
||||||
enum class ePetAbilityType : int32_t {
|
enum class ePetAbilityType : int32_t {
|
||||||
Invalid,
|
Invalid,
|
||||||
@ -8,3 +7,5 @@ enum class ePetAbilityType : int32_t {
|
|||||||
JumpOnObject,
|
JumpOnObject,
|
||||||
DigAtPosition
|
DigAtPosition
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif //!__EPETABILITYTYPE__H__
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#pragma once
|
#ifndef BASECOMBATAICOMPONENT_H
|
||||||
|
#define BASECOMBATAICOMPONENT_H
|
||||||
|
|
||||||
#include "RakNetTypes.h"
|
#include "RakNetTypes.h"
|
||||||
#include "dCommonVars.h"
|
#include "dCommonVars.h"
|
||||||
@ -387,3 +388,5 @@ private:
|
|||||||
*/
|
*/
|
||||||
bool IsMech();
|
bool IsMech();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif // BASECOMBATAICOMPONENT_H
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#pragma once
|
#ifndef GAMEMESSAGES_H
|
||||||
|
#define GAMEMESSAGES_H
|
||||||
|
|
||||||
#include "dCommonVars.h"
|
#include "dCommonVars.h"
|
||||||
#include <map>
|
#include <map>
|
||||||
@ -661,3 +662,5 @@ namespace GameMessages {
|
|||||||
void HandleConfirmDonationOnPlayer(RakNet::BitStream* inStream, Entity* entity);
|
void HandleConfirmDonationOnPlayer(RakNet::BitStream* inStream, Entity* entity);
|
||||||
void HandleCancelDonationOnPlayer(RakNet::BitStream* inStream, Entity* entity);
|
void HandleCancelDonationOnPlayer(RakNet::BitStream* inStream, Entity* entity);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif // GAMEMESSAGES_H
|
||||||
|
Loading…
Reference in New Issue
Block a user