using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; namespace ProjectBase.Event { public class EventInfo { public EventHandler action; public int time; public EventInfo(EventHandler handler, int time) { action = handler; this.time = time; } } }