summaryrefslogtreecommitdiff
path: root/modules/gdnative/include
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-05-23 13:47:36 +0200
committerGitHub <noreply@github.com>2019-05-23 13:47:36 +0200
commit1deb41226d5219346157744eed5fe85b7069c3d4 (patch)
tree26a1fc7e52a3e5a69b005b2f7570df683cd0af2c /modules/gdnative/include
parent2b1c3878f9b36cb52a5d2f654fdebb1b809167dd (diff)
parent48bd2e459fe4c0ca7dc2a29446128eff9fa99070 (diff)
Merge pull request #28738 from 2shady4u/master
Added native binding for dictionary duplication
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r--modules/gdnative/include/gdnative/dictionary.h2
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);