Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundTransferPacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 765 /* > 1.20.4 */
2#pragma once
3
5
6#include <string>
7
8namespace ProtocolCraft
9{
10 class ClientboundTransferPacket : public BaseMessage<ClientboundTransferPacket>
11 {
12 public:
13 static constexpr std::string_view packet_name = "Transfer";
14
15 SERIALIZED_FIELD(Host, std::string);
17
19 };
20}
21#endif