20 lines
344 B
C#
Raw Normal View History

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