IEvent.cs 106 B

12345678
  1. namespace Rokid.UXR.Interaction
  2. {
  3. public interface IEvent
  4. {
  5. object Data { get; }
  6. }
  7. }