aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_node.h
diff options
context:
space:
mode:
authorJuan Linietsky2017-08-29 20:12:04 -0300
committerGitHub2017-08-29 20:12:04 -0300
commit6d41ceea992e7f6589ea83e4db80fe4fe342fbdb (patch)
tree172bf81863ab40fb8d71ad36a22b0e4869f72e44 /editor/editor_node.h
parent9c3bddfac2d80b0e52b94eeace58dbfd249459e7 (diff)
parentc18b7046c6e6834c22b64f714d6bd46b4330a543 (diff)
downloadgodot-6d41ceea992e7f6589ea83e4db80fe4fe342fbdb.tar.gz
godot-6d41ceea992e7f6589ea83e4db80fe4fe342fbdb.tar.zst
godot-6d41ceea992e7f6589ea83e4db80fe4fe342fbdb.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 60c0609e3..445ef4922 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];