10 lines
239 B
Python
10 lines
239 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet106Transaction(Packet, packet_id=106):
|
||
|
__slots__ = ('window_id', 'action_id', 'flag')
|
||
|
FIELDS = [
|
||
|
('window_id', 'ubyte'),
|
||
|
('action_id', 'short'),
|
||
|
('flag', 'bool'),
|
||
|
]
|