unity-atoms/Packages/Core/Runtime/UnityEvents/BoolBoolUnityEvent.cs
2019-10-15 22:23:46 +02:00

12 lines
293 B
C#

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