mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-12 11:08:27 +00:00
make include guards standards conforming
fix compile issues
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef __LUTRIGGERS__H__
|
||||
#define __LUTRIGGERS__H__
|
||||
#ifndef LUTRIGGERS_H
|
||||
#define LUTRIGGERS_H
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
@@ -31,4 +31,4 @@ namespace LUTriggers {
|
||||
};
|
||||
};
|
||||
|
||||
#endif //!__LUTRIGGERS__H__
|
||||
#endif //!LUTRIGGERS_H
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __WORLDCONFIG__H__
|
||||
#define __WORLDCONFIG__H__
|
||||
#ifndef WORLDCONFIG_H
|
||||
#define WORLDCONFIG_H
|
||||
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
@@ -64,4 +64,4 @@ struct WorldConfig {
|
||||
int32_t levelCapCurrencyConversion{}; //! The ratio of UScore (LEGO Score) to coins
|
||||
};
|
||||
|
||||
#endif //! __WORLDCONFIG__H__
|
||||
#endif //! WORLDCONFIG_H
|
||||
|
||||
Reference in New Issue
Block a user