10 lines
236 B
Python
10 lines
236 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet105UpdateProgressbar(Packet, packet_id=105):
|
||
|
__slots__ = ('window_id', 'bar', 'value')
|
||
|
FIELDS = [
|
||
|
('window_id', 'ubyte'),
|
||
|
('bar', 'short'),
|
||
|
('value', 'short'),
|
||
|
]
|