InteractionTouchableEntry.cs 381 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using UnityEngine.Events;
  7. using UnityEngine.EventSystems;
  8. [Serializable]
  9. public class InteractionTouchableEntry {
  10. public InteractionTouchableType eventID = InteractionTouchableType.PokePress;
  11. public InteractionEvent callback = new InteractionEvent();
  12. }