bta-proxy/bta_proxy/packets/packet139setpaintingmotive.py

8 lines
159 B
Python
Raw Normal View History

2023-08-26 16:45:22 +03:00
from .base import Packet
class Packet139SetPaintingMotive(Packet, packet_id=139):
__slots__ = ('motive',)
FIELDS = [
('motive', 'int'),
]