aboutsummaryrefslogtreecommitdiff
path: root/packets/classes/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'packets/classes/types.go')
-rw-r--r--packets/classes/types.go40
1 files changed, 0 insertions, 40 deletions
diff --git a/packets/classes/types.go b/packets/classes/types.go
deleted file mode 100644
index a1a281e..0000000
--- a/packets/classes/types.go
+++ /dev/null
@@ -1,40 +0,0 @@
1package classes
2
3type CmdInfo struct {
4 Flags int32
5 ViewOrigin []float32
6 ViewAngles []float32
7 LocalViewAngles []float32
8 ViewOrigin2 []float32
9 ViewAngles2 []float32
10 LocalViewAngles2 []float32
11}
12
13type UserCmdInfo struct {
14 CommandNumber int32
15 TickCount int32
16 ViewAnglesX float32
17 ViewAnglesY float32
18 ViewAnglesZ float32
19 ForwardMove float32
20 SideMove float32
21 UpMove float32
22 Buttons int32
23 Impulse byte
24 WeaponSelect int
25 WeaponSubtype int
26 MouseDx int16
27 MouseDy int16
28}
29
30type StringTable struct {
31 TableName string
32 NumOfEntries int16
33 EntryName string
34 EntrySize int16
35 EntryData []byte
36 NumOfClientEntries int16
37 ClientEntryName string
38 ClientEntrySize int16
39 ClientEntryData []byte
40}