aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_node.h
diff options
context:
space:
mode:
authorIgnacio Etcheverry2017-08-29 23:59:20 +0200
committerIgnacio Etcheverry2017-08-29 23:59:26 +0200
commitc18b7046c6e6834c22b64f714d6bd46b4330a543 (patch)
tree6677400326a9e857931857504f770556ec1d6bde /editor/editor_node.h
parent909c9e0ba06eabfc8e21735f09d7a624dfd9fa36 (diff)
downloadgodot-c18b7046c6e6834c22b64f714d6bd46b4330a543.tar.gz
godot-c18b7046c6e6834c22b64f714d6bd46b4330a543.tar.zst
godot-c18b7046c6e6834c22b64f714d6bd46b4330a543.zip
Diffstat (limited to 'editor/editor_node.h')
-rw-r--r--editor/editor_node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_node.h b/editor/editor_node.h
index 985f5cd89..1d065ebbb 100644
--- a/editor/editor_node.h
+++ b/editor/editor_node.h
@@ -85,7 +85,7 @@
typedef void (*EditorNodeInitCallback)();
typedef void (*EditorPluginInitializeCallback)();
-typedef void (*EditorBuildCallback)();
+typedef bool (*EditorBuildCallback)();
class EditorPluginList;
@@ -575,7 +575,7 @@ private:
static EditorPluginInitializeCallback plugin_init_callbacks[MAX_INIT_CALLBACKS];
void _save_default_environment();
- void _call_build();
+ bool _call_build();
static int build_callback_count;
static EditorBuildCallback build_callbacks[MAX_BUILD_CALLBACKS];