Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ElementAccessor.cs
Go to the documentation of this file.
2
3internal sealed class ElementAccessor : Accessor
4{
5 private bool _nullable;
6
7 private bool _isSoap;
8
9 private bool _unbounded;
10
11 internal bool IsSoap
12 {
13 get
14 {
15 return _isSoap;
16 }
17 set
18 {
19 _isSoap = value;
20 }
21 }
22
23 internal bool IsNullable
24 {
25 get
26 {
27 return _nullable;
28 }
29 set
30 {
32 }
33 }
34
35 internal bool IsUnbounded
36 {
37 get
38 {
39 return _unbounded;
40 }
41 set
42 {
44 }
45 }
46
61}