diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2022-11-07 16:09:44 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2023-09-16 21:39:37 +0300 |
| commit | a77cf8169b42a4394e62f7a381ca546b27d0f723 (patch) | |
| tree | 2dd8d4f51c5841b806e9b5ed6fe9054bce06e2e0 /classes/types.go | |
| parent | changed github username + other stuff that i don't remember (diff) | |
| download | sdp.go-a77cf8169b42a4394e62f7a381ca546b27d0f723.tar.gz sdp.go-a77cf8169b42a4394e62f7a381ca546b27d0f723.tar.bz2 sdp.go-a77cf8169b42a4394e62f7a381ca546b27d0f723.zip | |
starting fresh for the third time
Diffstat (limited to 'classes/types.go')
| -rw-r--r-- | classes/types.go | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/classes/types.go b/classes/types.go deleted file mode 100644 index 20c793a..0000000 --- a/classes/types.go +++ /dev/null | |||
| @@ -1,60 +0,0 @@ | |||
| 1 | package classes | ||
| 2 | |||
| 3 | type 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 | |||
| 13 | type 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 int8 | ||
| 24 | WeaponSelect int | ||
| 25 | WeaponSubtype int | ||
| 26 | MouseDx int16 | ||
| 27 | MouseDy int16 | ||
| 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 | } | ||