virtualx-engine/modules/mono/glue/cs_files/ExportAttribute.cs

18 lines
362 B
C#
Raw Normal View History

using System;
2017-10-02 23:24:00 +02:00
namespace Godot
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class ExportAttribute : Attribute
{
private PropertyHint hint;
private string hintString;
2017-10-02 23:24:00 +02:00
public ExportAttribute(PropertyHint hint = PropertyHint.None, string hintString = "")
2017-10-02 23:24:00 +02:00
{
this.hint = hint;
this.hintString = hintString;
2017-10-02 23:24:00 +02:00
}
}
}