From f9f930133fe3993d49b156191d35a3e2cd3f9082 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Sat, 28 Oct 2023 13:09:03 +0200 Subject: [PATCH] Fix Script includes --- editor/debugger/behavior_tree_data.cpp | 1 + editor/task_tree.cpp | 1 + util/limbo_utility.cpp | 1 + 3 files changed, 3 insertions(+) diff --git a/editor/debugger/behavior_tree_data.cpp b/editor/debugger/behavior_tree_data.cpp index 04b79d7..77438b4 100644 --- a/editor/debugger/behavior_tree_data.cpp +++ b/editor/debugger/behavior_tree_data.cpp @@ -11,6 +11,7 @@ #include "behavior_tree_data.h" +#include "core/object/script_language.h" #include "core/templates/list.h" //// BehaviorTreeData diff --git a/editor/task_tree.cpp b/editor/task_tree.cpp index f5ed104..4cbdcb7 100644 --- a/editor/task_tree.cpp +++ b/editor/task_tree.cpp @@ -15,6 +15,7 @@ #include "modules/limboai/bt/tasks/composites/bt_probability_selector.h" #include "modules/limboai/util/limbo_utility.h" +#include "core/object/script_language.h" #include "editor/editor_scale.h" //**** TaskTree diff --git a/util/limbo_utility.cpp b/util/limbo_utility.cpp index 6b0c8fa..bf819be 100644 --- a/util/limbo_utility.cpp +++ b/util/limbo_utility.cpp @@ -13,6 +13,7 @@ #include "modules/limboai/bt/tasks/bt_task.h" +#include "core/object/script_language.h" #include "core/variant/variant.h" #include "scene/resources/texture.h"