7 lines
121 B
Python
7 lines
121 B
Python
|
from .base import Packet
|
||
|
|
||
|
class Packet30Entity(Packet, packet_id=30):
|
||
|
FIELDS = [
|
||
|
('entity_id', 'int'),
|
||
|
]
|