bta-proxy/bta_proxy/packets/packet139setpaintingmotive.py

8 lines
159 B
Python

from .base import Packet
class Packet139SetPaintingMotive(Packet, packet_id=139):
__slots__ = ('motive',)
FIELDS = [
('motive', 'int'),
]