From 1cf0c55f2aaf1a9a769f1a42f57d8ba98564632d Mon Sep 17 00:00:00 2001 From: Sara Date: Fri, 9 Aug 2024 18:25:14 +0200 Subject: [PATCH] chore: fixed godot_cpp includes being in quotes ipv angle brackets --- godot_macros.hpp | 6 +++--- level.cpp | 2 +- player_input.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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 {