mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-09 20:24:16 +00:00
make include guards standards conforming
fix compile issues
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef __DOCLIENTPROJECTILEIMPACT__H__
|
||||
#define __DOCLIENTPROJECTILEIMPACT__H__
|
||||
#ifndef DOCLIENTPROJECTILEIMPACT_H
|
||||
#define DOCLIENTPROJECTILEIMPACT_H
|
||||
|
||||
#include "dCommonVars.h"
|
||||
|
||||
@@ -77,4 +77,4 @@ public:
|
||||
std::string sBitStream;
|
||||
};
|
||||
|
||||
#endif //!__DOCLIENTPROJECTILEIMPACT__H__
|
||||
#endif //!DOCLIENTPROJECTILEIMPACT_H
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#ifndef __ECHOSTARTSKILL__H__
|
||||
#define __ECHOSTARTSKILL__H__
|
||||
#ifndef ECHOSTARTSKILL_H
|
||||
#define ECHOSTARTSKILL_H
|
||||
|
||||
#include "dCommonVars.h"
|
||||
#include "NiPoint3.h"
|
||||
@@ -127,4 +127,4 @@ public:
|
||||
uint32_t uiSkillHandle;
|
||||
};
|
||||
|
||||
#endif //!__ECHOSTARTSKILL__H__
|
||||
#endif //!ECHOSTARTSKILL_H
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#ifndef __ECHOSYNCSKILL__H__
|
||||
#define __ECHOSYNCSKILL__H__
|
||||
#ifndef ECHOSYNCSKILL_H
|
||||
#define ECHOSYNCSKILL_H
|
||||
|
||||
#include <string>
|
||||
|
||||
@@ -65,4 +65,4 @@ public:
|
||||
uint32_t uiSkillHandle{};
|
||||
};
|
||||
|
||||
#endif //!__ECHOSYNCSKILL__H__
|
||||
#endif //!ECHOSYNCSKILL_H
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#ifndef __REQUESTSERVERPROJECTILEIMPACT__H__
|
||||
#define __REQUESTSERVERPROJECTILEIMPACT__H__
|
||||
#ifndef REQUESTSERVERPROJECTILEIMPACT_H
|
||||
#define REQUESTSERVERPROJECTILEIMPACT_H
|
||||
|
||||
#include "dCommonVars.h"
|
||||
#include "eGameMessageType.h"
|
||||
@@ -69,4 +69,4 @@ public:
|
||||
std::string sBitStream;
|
||||
};
|
||||
|
||||
#endif //!__REQUESTSERVERPROJECTILEIMPACT__H__
|
||||
#endif //!REQUESTSERVERPROJECTILEIMPACT_H
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#ifndef __STARTSKILL__H__
|
||||
#define __STARTSKILL__H__
|
||||
#ifndef STARTSKILL_H
|
||||
#define STARTSKILL_H
|
||||
|
||||
#include "dCommonVars.h"
|
||||
#include "NiPoint3.h"
|
||||
@@ -139,4 +139,4 @@ public:
|
||||
uint32_t uiSkillHandle = 0;
|
||||
};
|
||||
|
||||
#endif //!__STARTSKILL__H__
|
||||
#endif //!STARTSKILL_H
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#ifndef __SYNCSKILL__H__
|
||||
#define __SYNCSKILL__H__
|
||||
#ifndef SYNCSKILL_H
|
||||
#define SYNCSKILL_H
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
@@ -64,4 +64,4 @@ public:
|
||||
uint32_t uiSkillHandle{};
|
||||
};
|
||||
|
||||
#endif //!__SYNCSKILL__H__
|
||||
#endif //!SYNCSKILL_H
|
||||
|
Reference in New Issue
Block a user