bta-proxy/bta_proxy/packets/packet22collect.py

9 lines
195 B
Python

from .base import Packet
class Packet22Collect(Packet, packet_id=22):
__slots__ = ('collected', 'collector')
FIELDS = [
('collected', 'int'),
('collector', 'int'),
]