From 7251a29ecda4491546078d9ee03f597fc2507c66 Mon Sep 17 00:00:00 2001 From: Sara Date: Wed, 29 May 2024 23:05:39 +0200 Subject: [PATCH] chore: added UTILS_ prefix to include guards --- game_mode.hpp | 6 +++--- game_root.hpp | 6 +++--- game_state.hpp | 6 +++--- level.hpp | 6 +++--- player_input.hpp | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/game_mode.hpp b/game_mode.hpp index ab6a350..55180e9 100644 --- a/game_mode.hpp +++ b/game_mode.hpp @@ -1,5 +1,5 @@ -#ifndef GAME_MODE_HPP -#define GAME_MODE_HPP +#ifndef UTILS_GAME_MODE_HPP +#define UTILS_GAME_MODE_HPP #include #include @@ -26,4 +26,4 @@ private: }; } -#endif // !GAME_MODE_HPP +#endif // !UTILS_GAME_MODE_HPP diff --git a/game_root.hpp b/game_root.hpp index 5161823..63013e9 100644 --- a/game_root.hpp +++ b/game_root.hpp @@ -1,5 +1,5 @@ -#ifndef GAME_ROOT_HPP -#define GAME_ROOT_HPP +#ifndef UTILS_GAME_ROOT_HPP +#define UTILS_GAME_ROOT_HPP #include "game_mode.hpp" #include "game_state.hpp" @@ -146,4 +146,4 @@ private: }; } -#endif // !GAME_ROOT_HPP +#endif // !UTILS_GAME_ROOT_HPP diff --git a/game_state.hpp b/game_state.hpp index 9d46415..34b31f4 100644 --- a/game_state.hpp +++ b/game_state.hpp @@ -1,5 +1,5 @@ -#ifndef GAME_STATE_HPP -#define GAME_STATE_HPP +#ifndef UTILS_GAME_STATE_HPP +#define UTILS_GAME_STATE_HPP #include @@ -15,4 +15,4 @@ public: }; } -#endif // !GAME_STATE_HPP +#endif // !UTILS_GAME_STATE_HPP diff --git a/level.hpp b/level.hpp index 84c5cb7..a057f5b 100644 --- a/level.hpp +++ b/level.hpp @@ -1,5 +1,5 @@ -#ifndef LEVEL_HPP -#define LEVEL_HPP +#ifndef UTILS_LEVEL_HPP +#define UTILS_LEVEL_HPP #include "game_mode.hpp" #include @@ -22,4 +22,4 @@ private: }; } -#endif // !LEVEL_HPP +#endif // !UTILS_LEVEL_HPP diff --git a/player_input.hpp b/player_input.hpp index 1fe3936..00b3bab 100644 --- a/player_input.hpp +++ b/player_input.hpp @@ -1,5 +1,5 @@ -#ifndef PLAYER_INPUT_HPP -#define PLAYER_INPUT_HPP +#ifndef UTILS_PLAYER_INPUT_HPP +#define UTILS_PLAYER_INPUT_HPP #include #include @@ -107,4 +107,4 @@ private: } -#endif // !PLAYER_INPUT_HPP +#endif // !UTILS_PLAYER_INPUT_HPP