7 lines
130 B
Python
7 lines
130 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet16BlockItemSwitch(Packet, packet_id=16):
|
||
|
FIELDS = [
|
||
|
('item_id', 'short'),
|
||
|
]
|