diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-08-26 19:11:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-26 19:11:45 +0200 |
commit | db55d8a4b6ad6c14f2131e02b50689eb8380276f (patch) | |
tree | 31c4442a85aec90cfaa9b30efb606503f66fb4f2 /modules/mono/glue/cs_files | |
parent | 282c0483c9688de79e0c147eb26638d48fb46ed8 (diff) | |
parent | 035d498af2903f2b92964d9609f796e984608f01 (diff) |
Merge pull request #21423 from exts/mono/collections
[Mono] Added Collections namespace to Array & Dictionary
Diffstat (limited to 'modules/mono/glue/cs_files')
-rw-r--r-- | modules/mono/glue/cs_files/Array.cs | 2 | ||||
-rw-r--r-- | modules/mono/glue/cs_files/Dictionary.cs | 2 | ||||
-rw-r--r-- | modules/mono/glue/cs_files/MarshalUtils.cs | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/modules/mono/glue/cs_files/Array.cs b/modules/mono/glue/cs_files/Array.cs index 1ec4d7d20a..2f0185b1e3 100644 --- a/modules/mono/glue/cs_files/Array.cs +++ b/modules/mono/glue/cs_files/Array.cs @@ -4,7 +4,7 @@ using System.Collections; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -namespace Godot +namespace Godot.Collections { class ArraySafeHandle : SafeHandle { diff --git a/modules/mono/glue/cs_files/Dictionary.cs b/modules/mono/glue/cs_files/Dictionary.cs index 30d17c2a59..64cb9f935d 100644 --- a/modules/mono/glue/cs_files/Dictionary.cs +++ b/modules/mono/glue/cs_files/Dictionary.cs @@ -4,7 +4,7 @@ using System.Collections; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -namespace Godot +namespace Godot.Collections { class DictionarySafeHandle : SafeHandle { diff --git a/modules/mono/glue/cs_files/MarshalUtils.cs b/modules/mono/glue/cs_files/MarshalUtils.cs index 6ad4b3dcb2..f7699a15bf 100644 --- a/modules/mono/glue/cs_files/MarshalUtils.cs +++ b/modules/mono/glue/cs_files/MarshalUtils.cs @@ -1,4 +1,5 @@ using System; +using Godot.Collections; namespace Godot { |