diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-12-15 10:54:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 10:54:48 +0100 |
commit | f680c6fab06b21fe40baf67dbbae0300bfe92612 (patch) | |
tree | 136cda83fadea505eb9a94181013e95328104e5a | |
parent | e75da0a4402e53373c66f9bf99e8e8ba6f0ee5b2 (diff) | |
parent | 29df438f9a2f84249f0cdae15c0a231ef6f7ef9e (diff) |
Merge pull request #14679 from touilleMan/add-godot_get_global_constants-to-gdnative-wrapper
[GDnative] missing godot_get_stack_bottom and godot_get_global_constants
-rw-r--r-- | modules/gdnative/gdnative_api.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/gdnative/gdnative_api.json b/modules/gdnative/gdnative_api.json index 31f3b0b77b..b7b2553435 100644 --- a/modules/gdnative/gdnative_api.json +++ b/modules/gdnative/gdnative_api.json @@ -5533,6 +5533,12 @@ ] }, { + "name": "godot_get_stack_bottom", + "return_type": "void *", + "arguments": [ + ] + }, + { "name": "godot_method_bind_get_method", "return_type": "godot_method_bind *", "arguments": [ @@ -5569,6 +5575,12 @@ ] }, { + "name": "godot_get_global_constants", + "return_type": "godot_dictionary", + "arguments": [ + ] + }, + { "name": "godot_register_native_call_type", "return_type": "void", "arguments": [ |