From 565d28e480a5a320682f87cb598404f1a34bbc5d Mon Sep 17 00:00:00 2001 From: fusion32 Date: Wed, 28 May 2025 18:51:06 -0300 Subject: rename/create some files The most annoying thing with C++ classes being in their "own" header file is that it makes it easy to create cyclic dependencies. We might end up merging all creature related header files into the original `cr.hh` that shows up in the original's debug information. --- src/player.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/player.hh') diff --git a/src/player.hh b/src/player.hh index c985408..bb58ac3 100644 --- a/src/player.hh +++ b/src/player.hh @@ -2,8 +2,8 @@ #define TIBIA_PLAYER_HH_ 1 #include "common.hh" -#include "creature.hh" #include "containers.hh" +#include "creature.hh" struct TPlayerData { uint32 CharacterID; -- cgit v1.2.3