IActiveState.cs 112 B

12345678
  1. namespace Rokid.UXR.Interaction
  2. {
  3. public interface IActiveState
  4. {
  5. bool Active { get; }
  6. }
  7. }