Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SwitchState.cs
Go to the documentation of this file.
2
4
5internal sealed class SwitchState
6{
7 private readonly Label _defaultLabel;
8
9 private readonly Label _endOfSwitchLabel;
10
11 private bool _defaultDefined;
12
14
16
17 internal bool DefaultDefined
18 {
19 get
20 {
21 return _defaultDefined;
22 }
23 set
24 {
26 }
27 }
28
35}
SwitchState(Label defaultLabel, Label endOfSwitchLabel)