9 lines
216 B
Python
9 lines
216 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet39AttachEntity(Packet, packet_id=39):
|
||
|
__slots__ = ('entity_id', 'vehicle_entity_id')
|
||
|
FIELDS = [
|
||
|
('entity_id', 'int'),
|
||
|
('vehicle_entity_id', 'int'),
|
||
|
]
|