IAlarmService.cs 183 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Time
  2. {
  3. [Service("time:al")] // 9.0.0+
  4. class IAlarmService : IpcService
  5. {
  6. public IAlarmService(ServiceCtx context) { }
  7. }
  8. }