mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-26 20:26:31 +01:00
12 lines
200 B
Python
12 lines
200 B
Python
|
from .packet import Packet
|
||
|
|
||
|
from minecraft.networking.types import (
|
||
|
VarInt
|
||
|
)
|
||
|
|
||
|
|
||
|
class KeepAlivePacket(Packet):
|
||
|
packet_name = "keep alive"
|
||
|
definition = [
|
||
|
{'keep_alive_id': VarInt}]
|