9 lines
230 B
C#
Raw Normal View History

2018-10-30 20:05:06 +01:00
namespace UnityAtoms
{
2019-10-15 22:23:46 +02:00
/// <summary>
/// Action of type `bool`. Inherits from `AtomAction&lt;bool&gt;`.
/// </summary>
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-purple")]
public abstract class BoolAction : AtomAction<bool> { }
}