diff options
author | Bastiaan Olij <mux213@gmail.com> | 2019-08-12 19:55:29 +1000 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2019-08-12 19:55:29 +1000 |
commit | fc1fe720c35d2669750079e7523b5436a01582a9 (patch) | |
tree | 1076f9cdda83adf1fa654d37a38eecfe053a2424 /include/core/GodotGlobal.hpp | |
parent | c2ec46f64a24de9a46b06c3e987c306f549ccadb (diff) | |
download | redot-cpp-fc1fe720c35d2669750079e7523b5436a01582a9.tar.gz |
Store all main entry points to the currently available APIs
Diffstat (limited to 'include/core/GodotGlobal.hpp')
-rw-r--r-- | include/core/GodotGlobal.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/core/GodotGlobal.hpp b/include/core/GodotGlobal.hpp index 12f8801..70f7157 100644 --- a/include/core/GodotGlobal.hpp +++ b/include/core/GodotGlobal.hpp @@ -9,8 +9,16 @@ namespace godot { extern "C" const godot_gdnative_core_api_struct *api; extern "C" const godot_gdnative_core_1_1_api_struct *core_1_1_api; +extern "C" const godot_gdnative_core_1_2_api_struct *core_1_2_api; + extern "C" const godot_gdnative_ext_nativescript_api_struct *nativescript_api; extern "C" const godot_gdnative_ext_nativescript_1_1_api_struct *nativescript_1_1_api; +extern "C" const godot_gdnative_ext_pluginscript_api_struct *pluginscript_api; +extern "C" const godot_gdnative_ext_android_api_struct *android_api; +extern "C" const godot_gdnative_ext_arvr_api_struct *arvr_api; +extern "C" const godot_gdnative_ext_videodecoder_api_struct *videodecoder_api; +extern "C" const godot_gdnative_ext_net_api_struct *net_api; +extern "C" const godot_gdnative_ext_net_3_2_api_struct *net_3_2_api; extern "C" const void *gdnlib; |