unity-atoms/Source/Events/IntIntEvent.cs
2019-05-29 18:52:27 +02:00

8 lines
198 B
C#

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