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

12 lines
300 B
C#

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