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