Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundUpdateEnabledFeaturesPacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 763 /* > 1.20.1 */
2#pragma once
3
5
6#include <vector>
7#include <string>
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<std::string>);
17
19 };
20} //ProtocolCraft
21#endif
SERIALIZED_FIELD(Features, std::vector< std::string >)