FKismetSwitchCase
Namespace: UAssetAPI.Kismet.Bytecode.Expressions
Represents a case in a Kismet bytecode switch statement.
public struct FKismetSwitchCase
Inheritance Object → ValueType → FKismetSwitchCase
Fields
CaseIndexValueTerm
The index value term of this case.
public KismetExpression CaseIndexValueTerm;
NextOffset
Code offset to the next case.
public uint NextOffset;
CaseTerm
The main case term.
public KismetExpression CaseTerm;
Constructors
FKismetSwitchCase(KismetExpression, UInt32, KismetExpression)
FKismetSwitchCase(KismetExpression caseIndexValueTerm, uint nextOffset, KismetExpression caseTerm)
Parameters
caseIndexValueTerm
KismetExpression
nextOffset
UInt32
caseTerm
KismetExpression