IAvmService.cs 178 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Am.Tcap
  2. {
  3. [Service("avm")] // 6.0.0+
  4. class IAvmService : IpcService
  5. {
  6. public IAvmService(ServiceCtx context) { }
  7. }
  8. }