From 71596133a5691cc74127b49b56cc1b6f9cacbb2b Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 2 May 2024 15:07:07 +0200 Subject: [PATCH] fix: name of character actor include guard --- src/character_actor.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/character_actor.hpp b/src/character_actor.hpp index ca434ae..9db7ddd 100644 --- a/src/character_actor.hpp +++ b/src/character_actor.hpp @@ -1,5 +1,5 @@ -#ifndef PLAYER_CHARACTER_HPP -#define PLAYER_CHARACTER_HPP +#ifndef CHARACTER_ACTOR_HPP +#define CHARACTER_ACTOR_HPP #include "character_data.hpp" #include "health.hpp" @@ -120,4 +120,4 @@ private: }; } -#endif // !PLAYER_CHARACTER_HPP +#endif // !CHARACTER_ACTOR_HPP