unity-atoms/Packages/Core/Runtime/UnityEvents/FloatUnityEvent.cs
2019-10-15 22:29:05 +02:00

12 lines
277 B
C#

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