20 lines
344 B
C#
20 lines
344 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace UGUIMiniMap
|
|||
|
{
|
|||
|
public class SeparatorAttribute : PropertyAttribute
|
|||
|
{
|
|||
|
public readonly string title;
|
|||
|
|
|||
|
|
|||
|
public SeparatorAttribute()
|
|||
|
{
|
|||
|
this.title = "";
|
|||
|
}
|
|||
|
|
|||
|
public SeparatorAttribute(string _title)
|
|||
|
{
|
|||
|
this.title = _title;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|