chore: fixed external includes being in quotes ipv angle brackets

This commit is contained in:
Sara 2024-08-09 18:24:14 +02:00
parent 75e73aba95
commit f771b383f3
5 changed files with 7 additions and 7 deletions

View file

@ -1,9 +1,9 @@
#include "enemy_world_state.hpp"
#include "entity_health.hpp"
#include "godot_cpp/variant/utility_functions.hpp"
#include "unit.hpp"
#include "goap/goal.hpp"
#include "utils/godot_macros.hpp"
#include <godot_cpp/variant/utility_functions.hpp>
#include <cmath>
void EnemyWorldState::_bind_methods() {

View file

@ -2,8 +2,8 @@
#define GOAL_MARKER_HPP
#include "goap/goal.hpp"
#include "godot_cpp/classes/static_body3d.hpp"
#include <godot_cpp/classes/node3d.hpp>
#include <godot_cpp/classes/static_body3d.hpp>
namespace gd = godot;

View file

@ -2,11 +2,11 @@
#define GOAP_ACTION_HPP
#include "actor_world_state.hpp"
#include "godot_cpp/variant/utility_functions.hpp"
#include "state.hpp"
#include <godot_cpp/variant/string.hpp>
#include <godot_cpp/templates/vector.hpp>
#include <godot_cpp/templates/hash_map.hpp>
#include <godot_cpp/templates/vector.hpp>
#include <godot_cpp/variant/string.hpp>
#include <godot_cpp/variant/utility_functions.hpp>
#define GOAP_ACTION(Name_) \
public: \

View file

@ -1,5 +1,5 @@
#include "action_db.hpp"
#include "godot_cpp/variant/utility_functions.hpp"
#include <godot_cpp/variant/utility_functions.hpp>
namespace goap {
ActionDB::StaticData::~StaticData() {

View file

@ -1,6 +1,6 @@
#include "actor_world_state.hpp"
#ifdef DEBUG_ENABLED
#include "godot_cpp/variant/utility_functions.hpp"
#include <godot_cpp/variant/utility_functions.hpp>
#endif
namespace goap {