EventInfo.cs 379 B

1234567891011121314151617181920
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.Events;
  5. namespace ProjectBase.Event
  6. {
  7. public class EventInfo
  8. {
  9. public EventHandler action;
  10. public int time;
  11. public EventInfo(EventHandler handler, int time)
  12. {
  13. action = handler;
  14. this.time = time;
  15. }
  16. }
  17. }