blob: 1488c2886cbf5a297bbe4ff21500ae0e1f1745ca (
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) { }
}
}
|