Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ConstantMapping.cs
Go to the documentation of this file.
2
4
5internal sealed class ConstantMapping : Mapping
6{
7 private string _xmlName;
8
9 private string _name;
10
11 private long _value;
12
13 internal string XmlName
14 {
15 get
16 {
17 if (_xmlName != null)
18 {
19 return _xmlName;
20 }
21 return string.Empty;
22 }
24 set
25 {
27 }
28 }
29
30 internal string Name
31 {
32 get
33 {
34 if (_name != null)
35 {
36 return _name;
37 }
38 return string.Empty;
39 }
41 set
42 {
43 _name = value;
44 }
45 }
46
47 internal long Value
48 {
49 get
50 {
51 return _value;
52 }
53 set
54 {
55 _value = value;
56 }
57 }
58}