IService.cs 182 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Account.Dauth
  2. {
  3. [Service("dauth:0")] // 5.0.0+
  4. class IService : IpcService
  5. {
  6. public IService(ServiceCtx context) { }
  7. }
  8. }