go-teeworlds-protocol/network6/network6.go

27 lines
524 B
Go
Raw Permalink Normal View History

2024-06-24 09:03:13 +00:00
package network6
const (
ObjInvalid = 0
ObjPlayerInput = 1
ObjProjectile = 2
ObjLaser = 3
ObjPickup = 4
ObjFlag = 5
ObjGameInfo = 6
ObjGameData = 7
ObjCharacterCore = 8
ObjCharacter = 9
ObjPlayerInfo = 10
ObjClientInfo = 11
ObjSpectatorInfo = 12
ObjCommon = 13
ObjExplosion = 14
ObjSpawn = 15
ObjHammerhit = 16
ObjDeath = 17
ObjSoundGlobal = 18
ObjSoundWorld = 19
ObjDamageInd = 20
NumSnapObjects = 21
)