summaryrefslogtreecommitdiffstats
path: root/modules/gdnative/godot.cpp
diff options
context:
space:
mode:
authorEmmanuel Leblond <emmanuel.leblond@gmail.com>2017-04-17 21:42:11 +0200
committerEmmanuel Leblond <emmanuel.leblond@gmail.com>2017-05-19 23:28:15 +0200
commitabcb044bf3f197ef68715f89abec77102bbe58ec (patch)
treee1c16a806b9b5ec71730a5b09c2ff6a4b17bc93c /modules/gdnative/godot.cpp
parenta75623f436c215e107ede321afa08a1897552deb (diff)
downloadredot-engine-abcb044bf3f197ef68715f89abec77102bbe58ec.tar.gz
Finish implementation of 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();