bta-proxy/bta_proxy/packets/packet141updateflag.py

12 lines
271 B
Python
Raw Normal View History

2023-08-26 16:45:22 +03:00
from .base import Packet
class Packet141UpdateFlag(Packet, packet_id=141):
2023-08-28 22:07:33 +03:00
__slots__ = ('x', 'y', 'z', 'colors')
2023-08-26 16:45:22 +03:00
FIELDS = [
('x', 'int'),
('y', 'short'),
('z', 'int'),
('colors', ('bytes', 384)),
2023-08-27 15:02:50 +03:00
('owner', 'string')
2023-08-26 16:45:22 +03:00
]