forked from ExileLord/Open-GHTCP
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathStructItemQbKey.cs
91 lines (79 loc) · 2.01 KB
/
StructItemQbKey.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
using GHNamespaceE;
using GHNamespaceF;
namespace GHNamespaceB
{
public class StructItemQbKey : ZzUnkNode295
{
public StructItemQbKey()
{
vmethod_0();
}
public StructItemQbKey(string string0) : this(QbSongClass1.AddKeyToDictionary(string0))
{
}
public StructItemQbKey(int int1)
{
Int0 = int1;
vmethod_0();
}
public StructItemQbKey(int int1, string string0)
{
Int0 = int1;
Nodes.Add(new TagValueNode(string0));
vmethod_0();
}
public StructItemQbKey(string string0, string string1)
{
Int0 = QbSongClass1.AddKeyToDictionary(string0);
Nodes.Add(new TagValueNode(string1));
vmethod_0();
}
public StructItemQbKey(string string0, int int1)
{
Int0 = QbSongClass1.AddKeyToDictionary(string0);
Nodes.Add(new TagValueNode(int1));
vmethod_0();
}
public override int vmethod_1()
{
return 25;
}
public string method_8()
{
if (Nodes.Count != 0)
{
return ((TagValueNode) FirstNode).method_2();
}
return null;
}
public void method_9(string string0)
{
if (Nodes.Count != 0)
{
((TagValueNode) FirstNode).method_3(string0);
return;
}
Nodes.Add(new TagValueNode(string0));
}
public int method_10()
{
if (Nodes.Count != 0)
{
return ((TagValueNode) FirstNode).Int0;
}
return 0;
}
public override string GetNodeText()
{
return "Tag Structure";
}
public override byte vmethod_15()
{
if (!vmethod_7())
{
return 27;
}
return 141;
}
}
}