IPointable.cs 154 B

123456789
  1. using System;
  2. namespace Rokid.UXR.Interaction
  3. {
  4. public interface IPointable
  5. {
  6. event Action<PointerEvent> WhenPointerEventRaised;
  7. }
  8. }