unity-atoms/Source/Events/IntEvent.cs

8 lines
181 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
[CreateAssetMenu(menuName = "Unity Atoms/Events/Int", fileName = "IntEvent")]
public sealed class IntEvent : GameEvent<int> { }
}