mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-04 01:59:06 +00:00
Move solution and projects to src
This commit is contained in:
17
src/Ryujinx.HLE/HOS/Tamper/OperationBlock.cs
Normal file
17
src/Ryujinx.HLE/HOS/Tamper/OperationBlock.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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 = new List<IOperation>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user