LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/DigitalRuby/ThunderAndLightning/SingleLineAttribute.cs

15 lines
248 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using UnityEngine;
namespace DigitalRuby.ThunderAndLightning
{
public class SingleLineAttribute : PropertyAttribute
{
public string Tooltip { get; private set; }
public SingleLineAttribute(string tooltip)
{
Tooltip = tooltip;
}
}
}