20 lines
353 B
C#

using UnityEngine;
namespace UGUIMiniMap
{
public class CustomToggleAttribute : PropertyAttribute
{
public readonly string title;
public CustomToggleAttribute()
{
this.title = "";
}
public CustomToggleAttribute(string _title)
{
this.title = _title;
}
}
}