mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
9 lines
240 B
C#
9 lines
240 B
C#
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Action of type `bool`. Inherits from `AtomAction<bool>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
public abstract class BoolAction : AtomAction<bool> { }
|
|
}
|