ServicePctl.cs 348 B

12345678910111213141516
  1. using Ryujinx.Core.OsHle.Objects.Am;
  2. using static Ryujinx.Core.OsHle.Objects.ObjHelper;
  3. namespace Ryujinx.Core.OsHle.Services
  4. {
  5. static partial class Service
  6. {
  7. public static long PctlCreateService(ServiceCtx Context)
  8. {
  9. MakeObject(Context, new IParentalControlService());
  10. return 0;
  11. }
  12. }
  13. }