unity-atoms/Packages/Core/Runtime/UnityEvents/VoidUnityEvent.cs
2019-10-15 22:37:15 +02:00

13 lines
291 B
C#

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