diff --git a/godot_macros.hpp b/godot_macros.hpp index d1002d2..55cf577 100644 --- a/godot_macros.hpp +++ b/godot_macros.hpp @@ -5,9 +5,9 @@ * \brief C-style preprocessor macros to simplify using godot's C++ API. */ -#include "godot_cpp/classes/engine.hpp" -#include "godot_cpp/core/class_db.hpp" -#include "godot_cpp/variant/string.hpp" +#include +#include +#include #define MACRO_STRING_INNER(_Arg) #_Arg diff --git a/level.cpp b/level.cpp index 2d2d629..d82c69d 100644 --- a/level.cpp +++ b/level.cpp @@ -1,5 +1,5 @@ #include "level.hpp" -#include "godot_cpp/core/class_db.hpp" +#include #include "utils/godot_macros.hpp" #include diff --git a/player_input.cpp b/player_input.cpp index d119e5a..b544c93 100644 --- a/player_input.cpp +++ b/player_input.cpp @@ -1,10 +1,10 @@ #include "player_input.hpp" -#include "godot_cpp/variant/utility_functions.hpp" #include "godot_macros.hpp" #include #include #include #include +#include #include namespace utils {