13 lines
212 B
Python
13 lines
212 B
Python
|
|
||
|
from typing import ClassVar
|
||
|
from .base import Packet
|
||
|
|
||
|
class Packet50PreChunk(Packet):
|
||
|
PACKET_ID: ClassVar[int] = 50
|
||
|
|
||
|
FIELDS = [
|
||
|
('x', 'int'),
|
||
|
('y', 'int'),
|
||
|
('mode', 'bool')
|
||
|
]
|