From 59cb4e65794820f166916c1cb5fda2d28228f7dd Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Tue, 1 Aug 2023 21:19:10 +0200 Subject: [PATCH] Don't include BehaviorTreeView into non-editor builds --- register_types.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/register_types.cpp b/register_types.cpp index 4a4e06c..5c4c24a 100644 --- a/register_types.cpp +++ b/register_types.cpp @@ -78,7 +78,6 @@ #include "bt/decorators/bt_run_limit.h" #include "bt/decorators/bt_subtree.h" #include "bt/decorators/bt_time_limit.h" -#include "editor/debugger/behavior_tree_view.h" #include "editor/debugger/limbo_debugger.h" #include "hsm/limbo_hsm.h" #include "hsm/limbo_state.h" @@ -86,6 +85,7 @@ #include "util/limbo_utility.h" #ifdef TOOLS_ENABLED +#include "editor/debugger/behavior_tree_view.h" #include "editor/limbo_ai_editor_plugin.h" #endif