8 lines
153 B
Python
8 lines
153 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet18Animation(Packet, packet_id=18):
|
||
|
FIELDS = [
|
||
|
('entity_id', 'int'),
|
||
|
('animate', 'byte'),
|
||
|
]
|