mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 12:50:18 +00:00
12 lines
290 B
C#
12 lines
290 B
C#
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|
{
|
|
struct ServiceDispatchMeta
|
|
{
|
|
public ServiceDispatchTableBase DispatchTable { get; }
|
|
|
|
public ServiceDispatchMeta(ServiceDispatchTableBase dispatchTable)
|
|
{
|
|
DispatchTable = dispatchTable;
|
|
}
|
|
}
|
|
}
|