bta-proxy/bta_proxy/packets/packet72updateplayerprofile.py

12 lines
279 B
Python
Raw Normal View History

2023-08-24 17:40:23 +03:00
from .base import Packet
class Packet72UpdatePlayerProfile(Packet, packet_id=72):
FIELDS = [
('username', ('str', 16)),
('nickname', ('str', 32)),
('score', 'int'),
('color', 'byte'),
('online', 'bool'),
('op', 'bool'),
]