mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-09 16:02:33 -07:00
Rename Ryujinx.Core to Ryujinx.HLE and add a separate project for a future LLE implementation
This commit is contained in:
20
Ryujinx.HLE/OsHle/Services/Friend/IFriendService.cs
Normal file
20
Ryujinx.HLE/OsHle/Services/Friend/IFriendService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Ryujinx.HLE.OsHle.Ipc;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.HLE.OsHle.Services.Friend
|
||||
{
|
||||
class IFriendService : IpcService
|
||||
{
|
||||
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||||
|
||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||
|
||||
public IFriendService()
|
||||
{
|
||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
//...
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user