fix: replaced includes for "godot_macros.h" with "godot_macros.hpp"

main
Sara 2024-05-30 00:49:37 +02:00
parent c7e5175b5d
commit ec2c3fd835
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
#include <godot_cpp/classes/global_constants.hpp>
#include <godot_cpp/classes/packed_scene.hpp>
#include <godot_cpp/classes/scene_state.hpp>
#include "utils/godot_macros.h"
#include "utils/godot_macros.hpp"
namespace utils {
void GameMode::_bind_methods() {

View File

@ -1,6 +1,6 @@
#include "game_root.hpp"
#include "game_mode.hpp"
#include "godot_macros.h"
#include "godot_macros.hpp"
#include "level.hpp"
#include "player.hpp"
#include "player_input.hpp"

View File

@ -1,5 +1,5 @@
#include "level.hpp"
#include "utils/godot_macros.h"
#include "utils/godot_macros.hpp"
namespace utils {
void Level3D::_bind_methods() {

View File

@ -1,6 +1,6 @@
#include "player_input.hpp"
#include "godot_cpp/variant/utility_functions.hpp"
#include "godot_macros.h"
#include "godot_macros.hpp"
#include <godot_cpp/classes/input.hpp>
#include <godot_cpp/classes/input_event.hpp>
#include <godot_cpp/classes/input_event_mouse_motion.hpp>