summaryrefslogtreecommitdiffstats
path: root/modules/gdnative/godot/godot_array.h
diff options
context:
space:
mode:
authorsheepandshepherd <sheepandshepherd@hotmail.com>2017-05-31 00:03:50 +0200
committersheepandshepherd <sheepandshepherd@hotmail.com>2017-05-31 00:03:50 +0200
commit9f34bb4ebe1e7d5b08b27acc7af216d3b27cd37e (patch)
treef6415a9aedb663f99bff32ad4643b22a538dd720 /modules/gdnative/godot/godot_array.h
parent5567e898d1052c1e2c2d32d3c37dfd957f4dc4bd (diff)
downloadredot-engine-9f34bb4ebe1e7d5b08b27acc7af216d3b27cd37e.tar.gz
Wrap copy constructor for some GDNative types
Diffstat (limited to 'modules/gdnative/godot/godot_array.h')
-rw-r--r--modules/gdnative/godot/godot_array.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdnative/godot/godot_array.h b/modules/gdnative/godot/godot_array.h
index f7150950fc..5db0031b8c 100644
--- a/modules/gdnative/godot/godot_array.h
+++ b/modules/gdnative/godot/godot_array.h
@@ -49,6 +49,7 @@ typedef struct godot_array {
#include "../godot.h"
void GDAPI godot_array_new(godot_array *p_arr);
+void GDAPI godot_array_new_copy(godot_array *p_dest, const godot_array *p_src);
void GDAPI godot_array_new_pool_color_array(godot_array *p_arr, const godot_pool_color_array *p_pca);
void GDAPI godot_array_new_pool_vector3_array(godot_array *p_arr, const godot_pool_vector3_array *p_pv3a);
void GDAPI godot_array_new_pool_vector2_array(godot_array *p_arr, const godot_pool_vector2_array *p_pv2a);