module-inspector/Runtime/Drawers/StringToField.cs

15 lines
336 B
C#

using System;
namespace Module.Inspector
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
public sealed class StringToField : DrawerPropertyAttribute
{
public readonly Type type;
public StringToField(Type type)
{
this.type = type;
}
}
}