ISession.cs 240 B

12345678910
  1. namespace Ryujinx.HLE.HOS.Services.Ptm.Fgm
  2. {
  3. [Service("fgm")] // 9.0.0+
  4. [Service("fgm:0")] // 9.0.0+
  5. [Service("fgm:9")] // 9.0.0+
  6. class ISession : IpcService
  7. {
  8. public ISession(ServiceCtx context) { }
  9. }
  10. }