diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs b/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs new file mode 100644 index 00000000..29792a1b --- /dev/null +++ b/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs @@ -0,0 +1,20 @@ +using Ryujinx.HLE.HOS.Ipc; +using System.Collections.Generic; + +namespace Ryujinx.HLE.HOS.Services.Ncm +{ + class IContentManager : IpcService + { + private Dictionary<int, ServiceProcessRequest> m_Commands; + + public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands; + + public IContentManager() + { + m_Commands = new Dictionary<int, ServiceProcessRequest>() + { + + }; + } + } +} |
