RiftMayhem/Assets/-UI/Logo/LogoAnimationHandler.cs
Pedro Gomes 0c1176bea6 Visuals overhaul
- Redone most UIs (WIP)
- New world map
- Game LOGO
- main menus updated (WIP)
2025-02-10 22:13:56 +00:00

15 lines
300 B
C#

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();
}
}