This commit is contained in:
2026-07-09 21:33:33 +02:00
commit 84a2a365f3
2364 changed files with 950134 additions and 0 deletions
@@ -0,0 +1,13 @@
using UnityEngine.Events;
namespace VOID.Generic.Objects.Unit.Events
{
public class AnimationGenericEventSet
{
public UnityEvent<AnimationGenericEvent> onStart = new();
public UnityEvent<AnimationGenericEvent> onLoopStart = new();
public UnityEvent<AnimationGenericEvent> onPerform = new();
public UnityEvent<AnimationGenericEvent> onLoopEnd = new();
public UnityEvent<AnimationGenericEvent> onEnd = new();
}
}