Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundServerLinksPacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 766 /* > 1.20.6 */
2#pragma once
3
6
7#include <vector>
8
9namespace ProtocolCraft
10{
11 class ClientboundServerLinksConfigurationPacket : public BaseMessage<ClientboundServerLinksConfigurationPacket>
12 {
13 public:
14 static constexpr std::string_view packet_name = "Server Links (Configuration)";
15
16 SERIALIZED_FIELD(Links, std::vector<ServerLinksUnstrustedEntry>);
17
19 };
20} // ProtocolCraft
21#endif
SERIALIZED_FIELD(Links, std::vector< ServerLinksUnstrustedEntry >)