bta-proxy/bta_proxy/packets/packet50prechunk.py

12 lines
192 B
Python

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