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

◆ SwitchLevelType

Type System.Diagnostics.SwitchLevelAttribute.SwitchLevelType
getset

Definition at line 10 of file SwitchLevelAttribute.cs.

11 {
12 get
13 {
14 return _type;
15 }
16 [MemberNotNull("_type")]
17 set
18 {
19 if (value == null)
20 {
21 throw new ArgumentNullException("value");
22 }
23 _type = value;
24 }
25 }

Referenced by System.Diagnostics.SwitchLevelAttribute.SwitchLevelAttribute().