unity-atoms/Source/Events/IntIntEvent.cs

8 lines
198 B
C#
Raw Normal View History

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