unity-atoms/Source/Listeners/IntListener.cs
2019-09-30 00:02:54 +02:00

13 lines
230 B
C#

using UnityEngine;
namespace UnityAtoms
{
[AddComponentMenu("Unity Atoms/Listeners/Int")]
public sealed class IntListener : AtomListener<
int,
IntAction,
IntEvent,
IntUnityEvent>
{ }
}