|
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'),
|
|
]
|