Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ExtensionDataMember.cs
Go to the documentation of this file.
2
3internal sealed class ExtensionDataMember
4{
6
7 private int _memberIndex;
8
9 public string Name { get; }
10
11 public string Namespace { get; }
12
14 {
15 get
16 {
17 return _value;
18 }
19 set
20 {
21 _value = value;
22 }
23 }
24
25 public int MemberIndex
26 {
27 get
28 {
29 return _memberIndex;
30 }
31 set
32 {
34 }
35 }
36
37 public ExtensionDataMember(string name, string ns)
38 {
39 Name = name;
40 Namespace = ns;
41 }
42}