OperationBlock.cs 424 B

1234567891011121314151617
  1. using Ryujinx.HLE.HOS.Tamper.Operations;
  2. using System.Collections.Generic;
  3. namespace Ryujinx.HLE.HOS.Tamper
  4. {
  5. struct OperationBlock
  6. {
  7. public byte[] BaseInstruction { get; }
  8. public List<IOperation> Operations { get; }
  9. public OperationBlock(byte[] baseInstruction)
  10. {
  11. BaseInstruction = baseInstruction;
  12. Operations = new List<IOperation>();
  13. }
  14. }
  15. }