bta-proxy/bta_proxy/packets/packet130updatesign.py

13 lines
319 B
Python

from .base import Packet
class Packet130UpdateSign(Packet, packet_id=130):
__slots__ = ('x', 'y', 'z', 'lines', 'picture', 'color')
FIELDS = [
('x', 'int'),
('y', 'short'),
('z', 'int'),
('lines', ('list', 4, 'str')),
('picture', 'int'),
('color', 'int'),
]