de4dot-cex/de4dot.blocks/SwitchData.cs
ViR Dash 5ec36c863c Add support for normal predicate control flow;
Add detection weight to ConfusedBy attribute
2017-09-26 01:54:42 +01:00

21 lines
350 B
C#

namespace de4dot.blocks
{
public class SwitchData
{
protected readonly Block _block;
public int? Key;
public bool IsKeyHardCoded;
public SwitchData(Block block)
{
_block = block;
}
public virtual bool Initialize()
{
return false;
}
}
}