8 lines
156 B
Python
8 lines
156 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet143PhotoMode(Packet, packet_id=143):
|
||
|
__slots__ = ('disabled',)
|
||
|
FIELDS = [
|
||
|
('disabled', 'bool'),
|
||
|
]
|