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