Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

12 lines
279 B
C#

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