7 lines
129 B
Python
7 lines
129 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet101CloseWindow(Packet, packet_id=101):
|
||
|
FIELDS = [
|
||
|
('window_id', 'byte'),
|
||
|
]
|