IRtcManager.cs 178 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Pcv.Rtc
  2. {
  3. [Service("rtc")] // 8.0.0+
  4. class IRtcManager : IpcService
  5. {
  6. public IRtcManager(ServiceCtx context) { }
  7. }
  8. }