using UnityEngine.Events; namespace VOID.Generic.Objects.Unit.Events { public class AnimationGenericEventSet { public UnityEvent onStart = new(); public UnityEvent onLoopStart = new(); public UnityEvent onPerform = new(); public UnityEvent onLoopEnd = new(); public UnityEvent onEnd = new(); } }