unity-atoms/Packages/Core/Runtime/UnityEvents/IntUnityEvent.cs
2019-10-15 22:32:06 +02:00

12 lines
269 B
C#

using System;
using UnityEngine.Events;
namespace UnityAtoms
{
/// <summary>
/// None generic Unity Event of type `int`. Inherits from `UnityEvent&lt;int&gt;`.
/// </summary>
[Serializable]
public sealed class IntUnityEvent : UnityEvent<int> { }
}