unity-atoms/Packages/Core/Runtime/Actions/BoolAction.cs

6 lines
122 B
C#
Raw Normal View History

2018-10-30 15:05:06 -04:00
namespace UnityAtoms
{
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-purple")]
public abstract class BoolAction : AtomAction<bool> { }
}