Botcraft 26.1.2
Loading...
Searching...
No Matches
ClientboundGameRuleValuesPacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 774 /* > 1.21.11 */
2#pragma once
3
5
7
8#include <map>
9
10namespace ProtocolCraft
11{
12 class ClientboundGameRuleValuesPacket : public BasePacket<ClientboundGameRuleValuesPacket>
13 {
14 public:
15 static constexpr std::string_view packet_name = "Game Rule Values";
16
17 SERIALIZED_FIELD(Values, std::map<Identifier, std::string>);
18
20 };
21} //ProtocolCraft
22#endif
SERIALIZED_FIELD(Values, std::map< Identifier, std::string >)