ServiceDispatchMeta.cs 290 B

123456789101112
  1. namespace Ryujinx.Horizon.Sdk.Sf.Cmif
  2. {
  3. struct ServiceDispatchMeta
  4. {
  5. public ServiceDispatchTableBase DispatchTable { get; }
  6. public ServiceDispatchMeta(ServiceDispatchTableBase dispatchTable)
  7. {
  8. DispatchTable = dispatchTable;
  9. }
  10. }
  11. }