aboutsummaryrefslogtreecommitdiff
path: root/packets/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'packets/types.go')
-rw-r--r--packets/types.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/packets/types.go b/packets/types.go
index 79cc5c2..41d633a 100644
--- a/packets/types.go
+++ b/packets/types.go
@@ -23,7 +23,6 @@ type SignOn struct {
23 PacketInfo []classes.CmdInfo 23 PacketInfo []classes.CmdInfo
24 InSequence int32 24 InSequence int32
25 OutSequence int32 25 OutSequence int32
26 Size int32
27 Data []messages.Message 26 Data []messages.Message
28} 27}
29 28
@@ -31,25 +30,21 @@ type Packet struct {
31 PacketInfo []classes.CmdInfo 30 PacketInfo []classes.CmdInfo
32 InSequence int32 31 InSequence int32
33 OutSequence int32 32 OutSequence int32
34 Size int32
35 Data []messages.Message 33 Data []messages.Message
36} 34}
37 35
38type SyncTick struct{} 36type SyncTick struct{}
39 37
40type ConsoleCmd struct { 38type ConsoleCmd struct {
41 Size int32
42 Data string 39 Data string
43} 40}
44 41
45type UserCmd struct { 42type UserCmd struct {
46 Cmd int32 43 Cmd int32
47 Size int32
48 Data classes.UserCmdInfo 44 Data classes.UserCmdInfo
49} 45}
50 46
51type DataTables struct { 47type DataTables struct {
52 Size int32
53 Data classes.DataTable 48 Data classes.DataTable
54} 49}
55 50
@@ -59,11 +54,9 @@ type Stop struct {
59 54
60type CustomData struct { 55type CustomData struct {
61 Unknown int32 56 Unknown int32
62 Size int32
63 Data []byte 57 Data []byte
64} 58}
65 59
66type StringTables struct { 60type StringTables struct {
67 Size int32
68 Data []classes.StringTable 61 Data []classes.StringTable
69} 62}