FeatherMC/src/PacketTypes.h

18 lines
283 B
C++

#pragma once
namespace Feather
{
enum class ServerboundHandholdingPacketId : int32_t
{
Handshake = 0,
};
enum class ServerboundStatusPacketId : int32_t
{
Request = 0,
Ping = 1
};
constexpr uint8_t LegacyServerListPing = 0xFE;
}