Botcraft 26.1.2
Loading...
Searching...
No Matches
ServerboundCustomClickActionPacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 770 /* > 1.21.5 */
2#pragma once
3
5
8
9#include <optional>
10
11namespace ProtocolCraft
12{
13 class ServerboundCustomClickActionPacket : public BasePacket<ServerboundCustomClickActionPacket>
14 {
15 public:
16 static constexpr std::string_view packet_name = "Custom Click Action";
17
19 SERIALIZED_FIELD(Payload, std::optional<NBT::UnnamedValue>);
20
22 };
23} //ProtocolCraft
24#endif
SERIALIZED_FIELD(Payload, std::optional< NBT::UnnamedValue >)