7 lines
124 B
Python
7 lines
124 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet8UpdateHealth(Packet, packet_id=8):
|
||
|
FIELDS = [
|
||
|
('health', 'short'),
|
||
|
]
|