unity-atoms/Source/Listeners/IntListener.cs

8 lines
193 B
C#
Raw Normal View History

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