bta-proxy/bta_proxy/packets/packet138playerlist.py

8 lines
194 B
Python
Raw Normal View History

2023-08-24 17:40:23 +03:00
from .base import Packet
class Packet138PlayerList(Packet, packet_id=138):
FIELDS = [
2023-08-28 22:07:33 +03:00
('n_players', 'int'),
2023-09-04 22:03:31 +03:00
('players', ('list', 'n_players', 'tuple', 'str', 'int')),
2023-08-24 17:40:23 +03:00
]