8 lines
159 B
Python
8 lines
159 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet139SetPaintingMotive(Packet, packet_id=139):
|
||
|
__slots__ = ('motive',)
|
||
|
FIELDS = [
|
||
|
('motive', 'int'),
|
||
|
]
|