1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 06:24:10 +01:00
Ryujinx/Ryujinx.Core/OsHle/Services/ServicePctl.cs

16 lines
348 B
C#
Raw Normal View History

using Ryujinx.Core.OsHle.Objects.Am;
2018-02-04 23:08:20 +00:00
using static Ryujinx.Core.OsHle.Objects.ObjHelper;
2018-02-04 23:08:20 +00:00
namespace Ryujinx.Core.OsHle.Services
2018-02-04 23:08:20 +00:00
{
static partial class Service
{
public static long PctlCreateService(ServiceCtx Context)
{
MakeObject(Context, new IParentalControlService());
2018-02-04 23:08:20 +00:00
return 0;
}
}
}