mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 18:17:11 +02: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;
|
|
}
|
|
}
|
|
}
|