IHandStatesService.cs 1020 B

12345678910111213141516171819202122232425262728
  1. /****************************************************************************
  2. * Copyright 2019 Nreal Techonology Limited. All rights reserved.
  3. *
  4. * This file is part of NRSDK.
  5. *
  6. * https://www.nreal.ai/
  7. *
  8. *****************************************************************************/
  9. namespace NRKernal
  10. {
  11. public interface IHandStatesService
  12. {
  13. bool IsRunning { get; }
  14. bool RunService();
  15. bool StopService();
  16. void UpdateStates(HandState[] handStates);
  17. void PauseService();
  18. void ResumeService();
  19. void DestroyService();
  20. }
  21. }