bta-proxy/bta_proxy/packets/packet2handshake.py

11 lines
177 B
Python

from typing import ClassVar
from .base import Packet
class Packet2Handshake(Packet):
PACKET_ID: ClassVar[int] = 2
FIELDS = [
('username', ('str', 16)),
]