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
13 private readonly object _end;
14
16
18
20
21 internal object End => _end;
22
30}
readonly LocalBuilder _indexVar
Definition ForState.cs:7
ForState(LocalBuilder indexVar, Label beginLabel, Label testLabel, object end)
Definition ForState.cs:23