unity-atoms/Source/Listeners/BoolListener.cs
2019-09-25 21:05:06 +02:00

13 lines
236 B
C#

using UnityEngine;
namespace UnityAtoms
{
[AddComponentMenu("Unity Atoms/Listeners/Bool")]
public sealed class BoolListener : AtomListener<
bool,
BoolAction,
BoolEvent,
BoolUnityEvent>
{ }
}