diff options
author | shaderbeast <jd16581556@gmail.com> | 2019-05-23 10:23:47 +0200 |
---|---|---|
committer | shaderbeast <jd16581556@gmail.com> | 2019-05-23 10:23:47 +0200 |
commit | 48bd2e459fe4c0ca7dc2a29446128eff9fa99070 (patch) | |
tree | 50a906da912c5752ec8a597b367b2d747a17d2c9 /modules/gdnative/include | |
parent | 0239d8bd9fa03965439aac2482d18746f807bd00 (diff) |
Added native binding for dictionary duplication
Added entry in gdnative_api.json
Added function to header as well
Fixed versioning
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/gdnative/dictionary.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdnative/include/gdnative/dictionary.h b/modules/gdnative/include/gdnative/dictionary.h index 14e35b4692..483cd9c4e3 100644 --- a/modules/gdnative/include/gdnative/dictionary.h +++ b/modules/gdnative/include/gdnative/dictionary.h @@ -63,6 +63,8 @@ void GDAPI godot_dictionary_new(godot_dictionary *r_dest); void GDAPI godot_dictionary_new_copy(godot_dictionary *r_dest, const godot_dictionary *p_src); void GDAPI godot_dictionary_destroy(godot_dictionary *p_self); +godot_dictionary GDAPI godot_dictionary_duplicate(const godot_dictionary *p_self, const godot_bool p_deep); + godot_int GDAPI godot_dictionary_size(const godot_dictionary *p_self); godot_bool GDAPI godot_dictionary_empty(const godot_dictionary *p_self); |