blob: 1f65f91ba49d912ef6ef8412185e5cd210a2bc18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package classic
type HackControl struct {
Flying byte
NoClip byte
Speeding byte
SpawnControl byte
ThirdPersonView byte
JumpHeight FShort
}
func (p *HackControl) PacketId() byte {
return 0x20
}
|