LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DigitalRuby/ThunderAndLightning/SingleLineAttribute.cs
2023-12-22 18:30:10 -05:00

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;
}
}
}