IActiveVibrationDeviceList.cs 507 B

123456789101112131415161718
  1. using Ryujinx.Core.OsHle.Handles;
  2. using Ryujinx.Core.OsHle.Ipc;
  3. using System.Collections.Generic;
  4. namespace Ryujinx.Core.OsHle.Objects.Hid
  5. {
  6. class IActiveApplicationDeviceList : IIpcInterface
  7. {
  8. private Dictionary<int, ServiceProcessRequest> m_Commands;
  9. public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
  10. public IActiveApplicationDeviceList()
  11. {
  12. m_Commands = new Dictionary<int, ServiceProcessRequest>() { };
  13. }
  14. }
  15. }