This commit is contained in:
Crizomb 2024-12-10 22:32:20 +01:00
parent 3a7ce962e7
commit 058e61a4fd
38 changed files with 3915 additions and 363 deletions

View file

@ -0,0 +1,9 @@
using UnityEngine;
using UnityEngine.Events;
public class EventBus
{
public static UnityEvent<float> WinEvent = new UnityEvent<float>();
}