10 lines
204 B
Python
10 lines
204 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet28EntityVelocity(Packet, packet_id=28):
|
||
|
FIELDS = [
|
||
|
('entity_id', 'int'),
|
||
|
('dx', 'short'),
|
||
|
('dy', 'short'),
|
||
|
('dz', 'short'),
|
||
|
]
|