unity-atoms/Source/Events/IntIntEvent.cs
2019-09-30 00:02:54 +02:00

8 lines
196 B
C#

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