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

12 lines
273 B
C#

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