blob: ee42a96d6dbf1c722355274e8f0025fc8a260b4c (
plain) (
blame)
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
|
package messages
type Packet struct {
PacketInfo []byte
InSequence int32
OutSequence int32
Size int32
Data []byte
}
type ConsoleCmd struct {
Size int32
Data string
}
type UserCmd struct {
Cmd int32
Size int32
Data []byte
}
type DataTables struct {
Size int32
Data []byte
}
type CustomData struct {
Unknown int32
Size int32
Data []byte
}
type StringTables struct {
Size int32
Data []byte
}
|