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