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