unity-atoms/Source/Events/IntIntEvent.cs
2019-09-25 21:05:06 +02:00

8 lines
198 B
C#

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