Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ForState.cs
Go to the documentation of this file.
2
4
5internal sealed class ForState
6{
7 private readonly LocalBuilder _indexVar;
8
9 private readonly Label _beginLabel;
10
11 private readonly Label _testLabel;
12
14
15 private bool _requiresEndLabel;
16
17 private readonly object _end;
18
20
22
24
25 internal Label EndLabel
26 {
27 get
28 {
29 return _endLabel;
30 }
31 set
32 {
34 }
35 }
36
37 internal bool RequiresEndLabel
38 {
39 get
40 {
41 return _requiresEndLabel;
42 }
43 set
44 {
46 }
47 }
48
49 internal object End => _end;
50
58}
readonly LocalBuilder _indexVar
Definition ForState.cs:7
ForState(LocalBuilder indexVar, Label beginLabel, Label testLabel, object end)
Definition ForState.cs:51