Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundForgetLevelChunkPacket.hpp
Go to the documentation of this file.
1#pragma once
2
4#if PROTOCOL_VERSION > 763 /* > 1.20.1 */
6#endif
7
8namespace ProtocolCraft
9{
10 class ClientboundForgetLevelChunkPacket : public BaseMessage<ClientboundForgetLevelChunkPacket>
11 {
12 public:
13 static constexpr std::string_view packet_name = "Forget Level Chunk";
14
15#if PROTOCOL_VERSION < 764 /* < 1.20.2 */
16 SERIALIZED_FIELD(X, int);
17 SERIALIZED_FIELD(Z, int);
18#else
20#endif
21
23 };
24} //ProtocolCraft
#define SERIALIZED_FIELD(Name,...)