pyCraft/minecraft/networking/packets/keep_alive_packet.py
2017-08-09 16:33:41 +01:00

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}]