diff options
Diffstat (limited to 'classes/types.go')
| -rw-r--r-- | classes/types.go | 32 |
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 | |||
| 30 | type DataTables struct { | ||
| 31 | SendTable []SendTable | ||
| 32 | ServerClassInfo []ServerClassInfo | ||
| 33 | } | ||
| 34 | |||
| 35 | type SendTable struct { | ||
| 36 | NetTableName string | ||
| 37 | NumOfProps int | ||
| 38 | SendPropType int | ||
| 39 | SendPropName string | ||
| 40 | SendPropFlags int | ||
| 41 | } | ||
| 42 | |||
| 43 | type ServerClassInfo struct { | ||
| 44 | } | ||
| 45 | |||
| 46 | type 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 | |||
| 59 | type GameEvent struct { | ||
| 60 | } | ||