diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-08-13 22:37:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-13 22:37:09 +0200 |
commit | c4e75aa63a6e1c823f825baeb7ba3876bfa16f05 (patch) | |
tree | 148fdc6f2ce52951cb7a2134b59331cbea3d8b63 /modules/mono/glue/cs_files | |
parent | 139e621338c7ba1fe03a86d6f2bee9ed1fb97a3b (diff) | |
parent | 5d2c239772c7c6d4fb0eda104ffbe301899bdef6 (diff) |
Merge pull request #20706 from mysticfall/issue-20705
Add missing GetPtr() for Dictionary<> and Array<>
Diffstat (limited to 'modules/mono/glue/cs_files')
-rw-r--r-- | modules/mono/glue/cs_files/Array.cs | 5 | ||||
-rw-r--r-- | modules/mono/glue/cs_files/Dictionary.cs | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/modules/mono/glue/cs_files/Array.cs b/modules/mono/glue/cs_files/Array.cs index 51f57daef4..1ec4d7d20a 100644 --- a/modules/mono/glue/cs_files/Array.cs +++ b/modules/mono/glue/cs_files/Array.cs @@ -331,5 +331,10 @@ namespace Godot { return GetEnumerator(); } + + internal IntPtr GetPtr() + { + return objectArray.GetPtr(); + } } } diff --git a/modules/mono/glue/cs_files/Dictionary.cs b/modules/mono/glue/cs_files/Dictionary.cs index 57a1960ad9..30d17c2a59 100644 --- a/modules/mono/glue/cs_files/Dictionary.cs +++ b/modules/mono/glue/cs_files/Dictionary.cs @@ -397,5 +397,10 @@ namespace Godot { return GetEnumerator(); } + + internal IntPtr GetPtr() + { + return objectDict.GetPtr(); + } } } |