blob: 42b34312c12f12361af01cd3b22d58bb71b01e2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator
{
class IDaemonSuspendSessionService : IpcService
{
private FriendServicePermissionLevel PermissionLevel;
public IDaemonSuspendSessionService(FriendServicePermissionLevel permissionLevel)
{
PermissionLevel = permissionLevel;
}
}
}
|