-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessage.cs
More file actions
70 lines (58 loc) · 1.46 KB
/
Copy pathMessage.cs
File metadata and controls
70 lines (58 loc) · 1.46 KB
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
using System;
// Token: 0x02000020 RID: 32
public class Message
{
// Token: 0x06000133 RID: 307 RVA: 0x0000415D File Offset: 0x0000235D
public Message(int command)
{
this.command = (sbyte)command;
this.dos = new myWriter();
}
// Token: 0x06000134 RID: 308 RVA: 0x00004178 File Offset: 0x00002378
public Message()
{
this.dos = new myWriter();
}
// Token: 0x06000135 RID: 309 RVA: 0x0000418B File Offset: 0x0000238B
public Message(sbyte command)
{
this.command = command;
this.dos = new myWriter();
}
// Token: 0x06000136 RID: 310 RVA: 0x000041A5 File Offset: 0x000023A5
public Message(sbyte command, sbyte[] data)
{
this.command = command;
this.dis = new myReader(data);
}
// Token: 0x06000137 RID: 311 RVA: 0x000041C0 File Offset: 0x000023C0
public sbyte[] getData()
{
return this.dos.getData();
}
// Token: 0x06000138 RID: 312 RVA: 0x000041CD File Offset: 0x000023CD
public myReader reader()
{
return this.dis;
}
// Token: 0x06000139 RID: 313 RVA: 0x000041D5 File Offset: 0x000023D5
public myWriter writer()
{
return this.dos;
}
// Token: 0x0600013A RID: 314 RVA: 0x000041DD File Offset: 0x000023DD
public int readInt3Byte()
{
return this.dis.readInt();
}
// Token: 0x0600013B RID: 315 RVA: 0x00003584 File Offset: 0x00001784
public void cleanup()
{
}
// Token: 0x04000114 RID: 276
public sbyte command;
// Token: 0x04000115 RID: 277
private myReader dis;
// Token: 0x04000116 RID: 278
private myWriter dos;
}