IHidDevice.cs 204 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Ryujinx.HLE.Input
  5. {
  6. interface IHidDevice
  7. {
  8. long Offset { get; }
  9. bool Connected { get; }
  10. }
  11. }