mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-04 22:35:37 +01:00
17 lines
350 B
C#
17 lines
350 B
C#
namespace Giants.BinTools.Macro
|
|
{
|
|
public class IfMacroLine : MacroLine
|
|
{
|
|
public MacroLineType Type => MacroLineType.If;
|
|
|
|
public string Condition { get; }
|
|
|
|
public IfMacroLine(string[] tokens)
|
|
{
|
|
this.Condition = string.Join(" ", tokens[1..]);
|
|
}
|
|
|
|
internal IfMacroLine() { }
|
|
}
|
|
}
|