-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGClass3.cs
139 lines (127 loc) · 2.35 KB
/
GClass3.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
using System;
using System.ComponentModel;
using System.Drawing;
[TypeConverter(typeof(ExpandableObjectConverter))]
public class GClass3
{
private GClass4 gclass4_0 = new GClass4();
private GClass4 gclass4_1 = new GClass4();
private GClass4 gclass4_2 = new GClass4();
private GClass4 gclass4_3 = new GClass4();
private Color color_0 = Color.DarkGreen;
private Color color_1 = Color.DarkGreen;
private bool bool_0 = true;
private bool bool_1 = true;
private bool bool_2 = true;
private bool bool_3 = true;
public bool Boolean_0
{
get
{
return this.bool_0;
}
set
{
this.bool_0 = value;
}
}
public bool Boolean_1
{
get
{
return this.bool_1;
}
set
{
this.bool_1 = value;
}
}
public bool Boolean_2
{
get
{
return this.bool_2;
}
set
{
this.bool_2 = value;
}
}
public GClass4 GClass4_0
{
get
{
return this.gclass4_0;
}
set
{
this.gclass4_0 = value;
}
}
public GClass4 GClass4_1
{
get
{
return this.gclass4_1;
}
set
{
this.gclass4_1 = value;
}
}
public GClass4 GClass4_2
{
get
{
return this.gclass4_2;
}
set
{
this.gclass4_2 = value;
}
}
public GClass4 GClass4_3
{
get
{
return this.gclass4_3;
}
set
{
this.gclass4_3 = value;
}
}
public bool Boolean_3
{
get
{
return this.bool_3;
}
set
{
this.bool_3 = value;
}
}
public Color Color_0
{
get
{
return this.color_0;
}
set
{
this.color_0 = value;
}
}
public Color Color_1
{
get
{
return this.color_1;
}
set
{
this.color_1 = value;
}
}
}