Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IfState.cs
Go to the documentation of this file.
2
4
5internal sealed class IfState
6{
8
9 private Label _endIf;
10
11 internal Label EndIf
12 {
13 get
14 {
15 return _endIf;
16 }
17 set
18 {
19 _endIf = value;
20 }
21 }
22
24 {
25 get
26 {
27 return _elseBegin;
28 }
29 set
30 {
32 }
33 }
34}