using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; public class LogoAnimationHandler : MonoBehaviour { public UnityEvent onAnimationEnded = new UnityEvent(); public void OnAnimationEnd() { onAnimationEnded.Invoke(); } }