diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-08-24 15:53:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-24 15:53:38 +0200 |
commit | 750f128a05ca86aa5fc1084d393f845ffe3f5883 (patch) | |
tree | b610b30c8ccd4f6337e439ced49473ec74dc4a7f /modules/mono/glue/cs_files/ExportAttribute.cs | |
parent | f733c6470d072f963a1fdf638817c22fb054dae7 (diff) | |
parent | 514856d8c79bee4a35c61aa08213fd774c7a7ee9 (diff) |
Merge pull request #20707 from aaronfranke/mono-combine
[Mono] Move several related small files
Diffstat (limited to 'modules/mono/glue/cs_files/ExportAttribute.cs')
-rw-r--r-- | modules/mono/glue/cs_files/ExportAttribute.cs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/mono/glue/cs_files/ExportAttribute.cs b/modules/mono/glue/cs_files/ExportAttribute.cs deleted file mode 100644 index e6f569e1bb..0000000000 --- a/modules/mono/glue/cs_files/ExportAttribute.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; - -namespace Godot -{ - [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] - public class ExportAttribute : Attribute - { - private PropertyHint hint; - private string hintString; - - public ExportAttribute(PropertyHint hint = PropertyHint.None, string hintString = "") - { - this.hint = hint; - this.hintString = hintString; - } - } -} |