bta-proxy/bta_proxy/packets/packet2handshake.py

11 lines
177 B
Python
Raw Normal View History

2023-08-24 15:29:57 +03:00
from typing import ClassVar
from .base import Packet
class Packet2Handshake(Packet):
PACKET_ID: ClassVar[int] = 2
FIELDS = [
('username', ('str', 16)),
]