mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-11-14 22:28:47 +00:00
make include guards standards conforming
fix compile issues
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef __GemPackBase__H__
|
||||
#define __GemPackBase__H__
|
||||
#ifndef GemPackBase_H
|
||||
#define GemPackBase_H
|
||||
|
||||
#include "CppScripts.h"
|
||||
|
||||
@@ -16,4 +16,4 @@ private:
|
||||
uint32_t m_SkillId = 0;
|
||||
};
|
||||
|
||||
#endif //!__GemPackBase__H__
|
||||
#endif //!GemPackBase_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __GEMPACK__H__
|
||||
#define __GEMPACK__H__
|
||||
#ifndef GEMPACK_H
|
||||
#define GEMPACK_H
|
||||
|
||||
#include "CoilBackpackBase.h"
|
||||
|
||||
@@ -10,4 +10,4 @@ private:
|
||||
static const uint32_t skillId = 1488;
|
||||
};
|
||||
|
||||
#endif //!__GEMPACK__H__
|
||||
#endif //!GEMPACK_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __SHARDARMOR__H__
|
||||
#define __SHARDARMOR__H__
|
||||
#ifndef SHARDARMOR_H
|
||||
#define SHARDARMOR_H
|
||||
|
||||
#include "CoilBackpackBase.h"
|
||||
|
||||
@@ -10,4 +10,4 @@ private:
|
||||
static const uint32_t skillId = 1249;
|
||||
};
|
||||
|
||||
#endif //!__SHARDARMOR__H__
|
||||
#endif //!SHARDARMOR_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __TESLAPACK__H__
|
||||
#define __TESLAPACK__H__
|
||||
#ifndef TESLAPACK_H
|
||||
#define TESLAPACK_H
|
||||
|
||||
#include "CoilBackpackBase.h"
|
||||
|
||||
@@ -10,4 +10,4 @@ private:
|
||||
static const uint32_t skillId = 1001;
|
||||
};
|
||||
|
||||
#endif //!__TESLAPACK__H__
|
||||
#endif //!TESLAPACK_H
|
||||
|
||||
Reference in New Issue
Block a user