BizHawk/BizHawk.Client.Common/config/EditorUIGeneratorAttribute.cs

16 lines
299 B
C#

using System;
namespace BizHawk.Client.Common
{
[AttributeUsage(AttributeTargets.Property)]
public sealed class EditorUIGeneratorAttribute : Attribute
{
public readonly Type GeneratorType;
public EditorUIGeneratorAttribute(Type generatorType)
{
GeneratorType = generatorType;
}
}
}