summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed/Files/Attributes/ExportAttribute.cs
blob: 6adf0448863bba633a6b60040e49fbba0343cdd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
        }
    }
}