forked from ncldavies/CyberAIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClass123.cs
95 lines (77 loc) · 2.02 KB
/
Class123.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
using System;
// Token: 0x020000E0 RID: 224
internal sealed class Class123
{
// Token: 0x060005CF RID: 1487 RVA: 0x00005EEE File Offset: 0x000040EE
public int method_0()
{
return this.int_0;
}
// Token: 0x060005D0 RID: 1488 RVA: 0x00005EF6 File Offset: 0x000040F6
public void method_1(int int_2)
{
this.int_0 = int_2;
}
// Token: 0x060005D1 RID: 1489 RVA: 0x00005EFF File Offset: 0x000040FF
public int method_2()
{
return this.int_1;
}
// Token: 0x060005D2 RID: 1490 RVA: 0x00005F07 File Offset: 0x00004107
public void method_3(int int_2)
{
this.int_1 = int_2;
}
// Token: 0x060005D3 RID: 1491 RVA: 0x00005F10 File Offset: 0x00004110
public uint method_4()
{
return this.uint_0;
}
// Token: 0x060005D4 RID: 1492 RVA: 0x00005F18 File Offset: 0x00004118
public void method_5(uint uint_4)
{
this.uint_0 = uint_4;
}
// Token: 0x060005D5 RID: 1493 RVA: 0x00005F21 File Offset: 0x00004121
public uint method_6()
{
return this.uint_1;
}
// Token: 0x060005D6 RID: 1494 RVA: 0x00005F29 File Offset: 0x00004129
public void method_7(uint uint_4)
{
this.uint_1 = uint_4;
}
// Token: 0x060005D7 RID: 1495 RVA: 0x00005F32 File Offset: 0x00004132
public uint method_8()
{
return this.uint_2;
}
// Token: 0x060005D8 RID: 1496 RVA: 0x00005F3A File Offset: 0x0000413A
public void method_9(uint uint_4)
{
this.uint_2 = uint_4;
}
// Token: 0x060005D9 RID: 1497 RVA: 0x00005F43 File Offset: 0x00004143
public uint method_10()
{
return this.uint_3;
}
// Token: 0x060005DA RID: 1498 RVA: 0x00005F4B File Offset: 0x0000414B
public void method_11(uint uint_4)
{
this.uint_3 = uint_4;
}
// Token: 0x040002CD RID: 717
private int int_0;
// Token: 0x040002CE RID: 718
private int int_1;
// Token: 0x040002CF RID: 719
private uint uint_0;
// Token: 0x040002D0 RID: 720
private uint uint_1;
// Token: 0x040002D1 RID: 721
private uint uint_2;
// Token: 0x040002D2 RID: 722
private uint uint_3;
}