blob: 0e3f965b347030e4bda7b360be13bc7b1f1aafec (
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) { }
}
}
|