diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs b/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs index 6dc46dc1..7f05d9be 100644 --- a/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs +++ b/Ryujinx.HLE/HOS/Services/Ncm/IContentManager.cs @@ -1,21 +1,8 @@ -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - -namespace Ryujinx.HLE.HOS.Services.Ncm +namespace Ryujinx.HLE.HOS.Services.Ncm { [Service("ncm")] class IContentManager : IpcService { - private Dictionary<int, ServiceProcessRequest> _commands; - - public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - - public IContentManager(ServiceCtx context) - { - _commands = new Dictionary<int, ServiceProcessRequest> - { - //... - }; - } + public IContentManager(ServiceCtx context) { } } }
\ No newline at end of file |
