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