995a40e8ef
Added dummy MSBuild project and solution to get tooling help when editing these files.
17 lines
422 B
C#
17 lines
422 B
C#
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;
|
|
}
|
|
}
|
|
}
|