diff options
author | Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com> | 2019-09-07 20:26:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-07 20:26:28 +0200 |
commit | 7ea5c907a7351093277bf38cc43f333fa2b82539 (patch) | |
tree | 5c83e0974290720ba69e00bae129a11718a95264 | |
parent | 4ee8ecd3efee742be58c1ff191e78d0de09b57b6 (diff) | |
parent | 93897fb8849d5b4326ef2d16797f5e0d9c835ff7 (diff) |
Merge pull request #32023 from neikeq/issue-31854
Fix missing method for internal_MonoWindowsInstallRoot
-rw-r--r-- | modules/mono/editor/editor_internal_calls.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mono/editor/editor_internal_calls.cpp b/modules/mono/editor/editor_internal_calls.cpp index cd1ca2a2c7..5a84d9e3b8 100644 --- a/modules/mono/editor/editor_internal_calls.cpp +++ b/modules/mono/editor/editor_internal_calls.cpp @@ -429,6 +429,7 @@ void register_editor_internal_calls() { mono_add_internal_call("GodotTools.Internals.Internal::internal_ScriptEditorEdit", (void *)godot_icall_Internal_ScriptEditorEdit); mono_add_internal_call("GodotTools.Internals.Internal::internal_EditorNodeShowScriptScreen", (void *)godot_icall_Internal_EditorNodeShowScriptScreen); mono_add_internal_call("GodotTools.Internals.Internal::internal_GetScriptsMetadataOrNothing", (void *)godot_icall_Internal_GetScriptsMetadataOrNothing); + mono_add_internal_call("GodotTools.Internals.Internal::internal_MonoWindowsInstallRoot", (void *)godot_icall_Internal_MonoWindowsInstallRoot); mono_add_internal_call("GodotTools.Internals.Internal::internal_EditorRunPlay", (void *)godot_icall_Internal_EditorRunPlay); mono_add_internal_call("GodotTools.Internals.Internal::internal_EditorRunStop", (void *)godot_icall_Internal_EditorRunStop); mono_add_internal_call("GodotTools.Internals.Internal::internal_ScriptEditorDebugger_ReloadScripts", (void *)godot_icall_Internal_ScriptEditorDebugger_ReloadScripts); |