aboutsummaryrefslogtreecommitdiff
path: root/classes/types.go
diff options
context:
space:
mode:
authorBiSaXa <1669855+BiSaXa@users.noreply.github.com>2022-09-07 23:08:58 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-09-16 21:39:36 +0300
commit0b8d982acae2ae102e6dee29afff3b621f32cd8f (patch)
tree5754719ec8f17745bc6413f621974f1120443788 /classes/types.go
parentfirst rewrite commit using bisaxa/bitreader (diff)
downloadsdp.go-0b8d982acae2ae102e6dee29afff3b621f32cd8f.tar.gz
sdp.go-0b8d982acae2ae102e6dee29afff3b621f32cd8f.tar.bz2
sdp.go-0b8d982acae2ae102e6dee29afff3b621f32cd8f.zip
class parses and other stuff
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}