2019-06-16 23:08:32 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Friend
|
|
|
|
{
|
|
|
|
class IDaemonSuspendSessionService : IpcService
|
|
|
|
{
|
2019-07-04 15:14:17 +00:00
|
|
|
private FriendServicePermissionLevel PermissionLevel;
|
|
|
|
|
|
|
|
public IDaemonSuspendSessionService(FriendServicePermissionLevel permissionLevel)
|
2019-06-16 23:08:32 +00:00
|
|
|
{
|
2019-07-04 15:14:17 +00:00
|
|
|
PermissionLevel = permissionLevel;
|
2019-06-16 23:08:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|