9 lines
181 B
Python
9 lines
181 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet7UseEntity(Packet, packet_id=7):
|
||
|
FIELDS = [
|
||
|
('player_id', 'int'),
|
||
|
('entity_id', 'int'),
|
||
|
('is_left', 'bool'),
|
||
|
]
|