aboutsummaryrefslogtreecommitdiff
path: root/classes/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'classes/types.go')
-rw-r--r--classes/types.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/classes/types.go b/classes/types.go
index 3fcc692..20c793a 100644
--- a/classes/types.go
+++ b/classes/types.go
@@ -26,3 +26,35 @@ type UserCmdInfo struct {
26 MouseDx int16 26 MouseDx int16
27 MouseDy int16 27 MouseDy int16
28} 28}
29
30type DataTables struct {
31 SendTable []SendTable
32 ServerClassInfo []ServerClassInfo
33}
34
35type SendTable struct {
36 NetTableName string
37 NumOfProps int
38 SendPropType int
39 SendPropName string
40 SendPropFlags int
41}
42
43type ServerClassInfo struct {
44}
45
46type StringTable struct {
47 NumOfTables int8
48 TableName string
49 NumOfEntries int16
50 EntryName string
51 EntrySize int16
52 EntryData []byte
53 NumOfClientEntries int16
54 ClientEntryName string
55 ClientEntrySize int16
56 ClientEntryData []byte
57}
58
59type GameEvent struct {
60}