diff options
author | Cameron Reikes <cameronreikes@gmail.com> | 2019-07-16 18:31:58 -0700 |
---|---|---|
committer | Cameron Reikes <cameronreikes@gmail.com> | 2019-09-14 13:08:28 -0700 |
commit | 757c509437720b50056bd67f8d4e463c38c5b13e (patch) | |
tree | 2a1f4235d5e4c340472972dba0d39b504d2e54c8 /modules/gdnative/include | |
parent | 24e1039eb6fe32115e8d1a62a84965e9be19a2ed (diff) |
Add array slice method
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/gdnative/array.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdnative/include/gdnative/array.h b/modules/gdnative/include/gdnative/array.h index 10ef8a73d2..2e3ce58033 100644 --- a/modules/gdnative/include/gdnative/array.h +++ b/modules/gdnative/include/gdnative/array.h @@ -132,6 +132,8 @@ void GDAPI godot_array_destroy(godot_array *p_self); godot_array GDAPI godot_array_duplicate(const godot_array *p_self, const godot_bool p_deep); +godot_array GDAPI godot_array_slice(const godot_array *p_self, const godot_int p_begin, const godot_int p_end, const godot_int p_delta, const godot_bool p_deep); + godot_variant GDAPI godot_array_max(const godot_array *p_self); godot_variant GDAPI godot_array_min(const godot_array *p_self); |