unity-atoms/Source/Listeners/IntListener.cs

13 lines
230 B
C#
Raw Normal View History

using UnityEngine;
2018-10-30 15:05:06 -04:00
namespace UnityAtoms
{
[AddComponentMenu("Unity Atoms/Listeners/Int")]
public sealed class IntListener : AtomListener<
int,
IntAction,
IntEvent,
IntUnityEvent>
{ }
2018-10-30 15:05:06 -04:00
}