10 lines
229 B
Python
10 lines
229 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet35EntityNickname(Packet, packet_id=35):
|
||
|
__slots__ = ('entity_id', 'name', 'color')
|
||
|
FIELDS = [
|
||
|
('entity_id', 'int'),
|
||
|
('name', 'str'),
|
||
|
('color', 'ubyte'),
|
||
|
]
|