10 lines
238 B
Python
10 lines
238 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet107UpdateCreativeInventory(Packet, packet_id=107):
|
||
|
__slots__ = ('window_id', 'page', 'text')
|
||
|
FIELDS = [
|
||
|
('window_id', 'ubyte'),
|
||
|
('page', 'int'),
|
||
|
('text', 'str'),
|
||
|
]
|