BMTuneSource/BMFuscator/Protections/ControlFlow/Block.cs

22 lines
447 B
C#

using dnlib.DotNet.Emit;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMDevs.ControlFlow
{
public class Block
{
public Block()
{
Instructions = new List<Instruction>();
}
public List<Instruction> Instructions { get; set; }
public int Number { get; set; }
public int Next { get; set; }
}
}