14 lines
248 B
C#
14 lines
248 B
C#
using UnityEngine;
|
|
|
|
namespace DigitalRuby.ThunderAndLightning
|
|
{
|
|
public class SingleLineAttribute : PropertyAttribute
|
|
{
|
|
public string Tooltip { get; private set; }
|
|
|
|
public SingleLineAttribute(string tooltip)
|
|
{
|
|
Tooltip = tooltip;
|
|
}
|
|
}
|
|
}
|