From 0b8d982acae2ae102e6dee29afff3b621f32cd8f Mon Sep 17 00:00:00 2001 From: BiSaXa <1669855+BiSaXa@users.noreply.github.com> Date: Wed, 7 Sep 2022 23:08:58 +0300 Subject: class parses and other stuff --- classes/types.go | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'classes/types.go') 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 { MouseDx int16 MouseDy int16 } + +type DataTables struct { + SendTable []SendTable + ServerClassInfo []ServerClassInfo +} + +type SendTable struct { + NetTableName string + NumOfProps int + SendPropType int + SendPropName string + SendPropFlags int +} + +type ServerClassInfo struct { +} + +type StringTable struct { + NumOfTables int8 + TableName string + NumOfEntries int16 + EntryName string + EntrySize int16 + EntryData []byte + NumOfClientEntries int16 + ClientEntryName string + ClientEntrySize int16 + ClientEntryData []byte +} + +type GameEvent struct { +} -- cgit v1.2.3