mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-30 06:03:27 +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}]
|