summaryrefslogtreecommitdiff
path: root/modules/gdnative/godot.cpp
diff options
context:
space:
mode:
authorThomas Herzog <karroffel@users.noreply.github.com>2017-05-19 22:12:14 +0000
committerGitHub <noreply@github.com>2017-05-19 22:12:14 +0000
commit6fd217d7c3afb1f7e4c68f9ab40883593f617a7e (patch)
treee1c16a806b9b5ec71730a5b09c2ff6a4b17bc93c /modules/gdnative/godot.cpp
parenta75623f436c215e107ede321afa08a1897552deb (diff)
parentabcb044bf3f197ef68715f89abec77102bbe58ec (diff)
Merge pull request #8821 from touilleMan/gdnative_missing_functions
Finish implementing GDnative builtins bindings
Diffstat (limited to 'modules/gdnative/godot.cpp')
-rw-r--r--modules/gdnative/godot.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/gdnative/godot.cpp b/modules/gdnative/godot.cpp
index bc53eb93f4..4dbb72bba1 100644
--- a/modules/gdnative/godot.cpp
+++ b/modules/gdnative/godot.cpp
@@ -51,10 +51,8 @@ extern "C" void _basis_api_anchor();
extern "C" void _rect3_api_anchor();
extern "C" void _transform_api_anchor();
extern "C" void _color_api_anchor();
-extern "C" void _image_api_anchor();
extern "C" void _node_path_api_anchor();
extern "C" void _rid_api_anchor();
-extern "C" void _input_event_api_anchor();
extern "C" void _dictionary_api_anchor();
extern "C" void _array_api_anchor();
extern "C" void _pool_arrays_api_anchor();
@@ -73,10 +71,8 @@ void _api_anchor() {
_basis_api_anchor();
_transform_api_anchor();
_color_api_anchor();
- _image_api_anchor();
_node_path_api_anchor();
_rid_api_anchor();
- _input_event_api_anchor();
_dictionary_api_anchor();
_array_api_anchor();
_pool_arrays_api_anchor();