Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsBranch()

static bool System.Reflection.Metadata.ILOpCodeExtensions.IsBranch ( this ILOpCode opCode)
inlinestatic

Definition at line 5 of file ILOpCodeExtensions.cs.

6 {
7 if (opCode - 43 <= ILOpCode.Ldc_i4_3 || opCode - 221 <= ILOpCode.Break)
8 {
9 return true;
10 }
11 return false;
12 }