bta-proxy/bta_proxy/packets/packet138playerlist.py

9 lines
228 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'),
('players', ('list', 'n_players', 'str')),
('scores', ('list', 'n_players', 'int')),
2023-08-24 17:40:23 +03:00
]