12 lines
251 B
Python
12 lines
251 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet25EntityPainting(Packet, packet_id=25):
|
||
|
FIELDS = [
|
||
|
('entity_id', 'int'),
|
||
|
('title', 'str'),
|
||
|
('x', 'int'),
|
||
|
('y', 'int'),
|
||
|
('z', 'int'),
|
||
|
('direction', 'int'),
|
||
|
]
|