aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Objects/Am/IParentalControlService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Core/OsHle/Objects/Am/IParentalControlService.cs')
-rw-r--r--Ryujinx.Core/OsHle/Objects/Am/IParentalControlService.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Ryujinx.Core/OsHle/Objects/Am/IParentalControlService.cs b/Ryujinx.Core/OsHle/Objects/Am/IParentalControlService.cs
deleted file mode 100644
index 1feacfa6..00000000
--- a/Ryujinx.Core/OsHle/Objects/Am/IParentalControlService.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using Ryujinx.Core.OsHle.Ipc;
-using System.Collections.Generic;
-
-namespace Ryujinx.Core.OsHle.Objects.Am
-{
- class IParentalControlService : IIpcInterface
- {
- private Dictionary<int, ServiceProcessRequest> m_Commands;
-
- public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
-
- public IParentalControlService()
- {
- m_Commands = new Dictionary<int, ServiceProcessRequest>()
- {
- //...
- };
- }
- }
-} \ No newline at end of file