20 lines
353 B
C#
Raw Normal View History

2025-08-22 21:31:17 +05:00
using UnityEngine;
namespace UGUIMiniMap
{
public class CustomToggleAttribute : PropertyAttribute
{
public readonly string title;
public CustomToggleAttribute()
{
this.title = "";
}
public CustomToggleAttribute(string _title)
{
this.title = _title;
}
}
}