EventUtil.cs 242 B

1234567891011121314
  1. using UnityEngine;
  2. using UnityEngine.Events;
  3. using System.Collections;
  4. public class EventUtil
  5. {
  6. public delegate void SimpleEventDelegate();
  7. }
  8. public class IntegerEvent : UnityEvent<int>{}
  9. public class ObjectEvent : UnityEvent<object>{}