EventAttribute.cs 197 B

1234567891011
  1. using UnityEngine.EventSystems;
  2. namespace Base
  3. {
  4. public class EventAttribute : AEventAttribute
  5. {
  6. public EventAttribute(EventIdType type) : base(type)
  7. {
  8. }
  9. }
  10. }