Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundUpdateEnabledFeaturesPacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 760 /* > 1.19.2 */ && PROTOCOL_VERSION < 764 /* < 1.20.2 */
2#pragma once
3
6
7#include <vector>
8
9namespace ProtocolCraft
10{
11 class ClientboundUpdateEnabledFeaturesPacket : public BaseMessage<ClientboundUpdateEnabledFeaturesPacket>
12 {
13 public:
14 static constexpr std::string_view packet_name = "Update Enabled Features";
15
16 SERIALIZED_FIELD(Features, std::vector<Identifier>);
17
19 };
20} //ProtocolCraft
21#endif
#define SERIALIZED_FIELD(Name,...)