11 lines
246 B
Python
11 lines
246 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet142OpenFlagWindow(Packet, packet_id=142):
|
||
|
__slots__ = ('window_id', 'x', 'y', 'z')
|
||
|
FIELDS = [
|
||
|
('window_id', 'ubyte'),
|
||
|
('x', 'int'),
|
||
|
('y', 'short'),
|
||
|
('z', 'int'),
|
||
|
]
|