mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
20 lines
494 B
C#
20 lines
494 B
C#
|
using Ryujinx.OsHle.Ipc;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Ryujinx.OsHle.Objects.Am
|
||
|
{
|
||
|
class ILibraryAppletCreator : IIpcInterface
|
||
|
{
|
||
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||
|
|
||
|
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||
|
|
||
|
public ILibraryAppletCreator()
|
||
|
{
|
||
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||
|
{
|
||
|
//...
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|