unity-atoms/Packages/Core/Runtime/Events/IntIntEvent.cs
2019-10-01 17:27:22 +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> { }
}