mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-18 08:00:58 -05:00
18 lines
410 B
C#
18 lines
410 B
C#
using Ryujinx.HLE.HOS.Tamper.Operations;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.HLE.HOS.Tamper
|
|
{
|
|
readonly struct OperationBlock
|
|
{
|
|
public byte[] BaseInstruction { get; }
|
|
public List<IOperation> Operations { get; }
|
|
|
|
public OperationBlock(byte[] baseInstruction)
|
|
{
|
|
BaseInstruction = baseInstruction;
|
|
Operations = [];
|
|
}
|
|
}
|
|
}
|