unity-atoms/Packages/Core/Runtime/UnityEvents/BoolBoolUnityEvent.cs
2019-10-01 17:27:22 +02:00

9 lines
157 B
C#

using System;
using UnityEngine.Events;
namespace UnityAtoms
{
[Serializable]
public sealed class BoolBoolUnityEvent : UnityEvent<bool, bool> { }
}