Files
Liberium-1.8-Source-Code/Obfuscator.Obfuscator.CtrlFlow/Block.cs
T
2026-08-27 11:21:58 -06:00

21 lines
369 B
C#

using System.Collections.Generic;
using dnlib.DotNet.Emit;
namespace Obfuscator.Obfuscator.CtrlFlow;
public class Block
{
public List<Instruction> Instructions { get; set; }
public int Number { get; set; }
public int SubRand { get; set; }
public int PlusRand { get; set; }
public Block()
{
Instructions = new List<Instruction>();
}
}