InteractionPressableEntry.cs 384 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 InteractionPressableEntry {
  10. public InteractionPressableType eventID = InteractionPressableType.PointerClick;
  11. public InteractionEvent callback = new InteractionEvent();
  12. }