Enum in BasicBlock
Inherits from System.Enum
The conditions under which a Destination may be reached at the end of a BasicBlock.
public enum Condition
{
Fallthrough,
DirectJump,
ExpressionIsTrue,
ExpressionIsFalse,
Option
}The Destination is reached beacuse of an explicit instruction to go to this block.
The Destination is reached because an expression evaluated to false.
The Destination is reached because an expression evaluated to true.
The Destination is reached because the preceding BasicBlock reached the end of its execution, and the Destination's target is the block immediately following.
The Destination is reached because the player made an in-game choice to go to it.
DirectJumpEnumeration Member in Condition
The Destination is reached because an expression evaluated to true.
ExpressionIsTrueEnumeration Member in Condition
The Destination is reached because the player made an in-game choice to go to it.
OptionEnumeration Member in Condition
The Destination is reached because the preceding BasicBlock reached the end of its execution, and the Destination's target is the block immediately following.
FallthroughEnumeration Member in Condition
The Destination is reached because an expression evaluated to false.
ExpressionIsFalse