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