Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundSetBorderLerpSizePacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 754 /* > 1.16.5 */
2#pragma once
3
5
6namespace ProtocolCraft
7{
8 class ClientboundSetBorderLerpSizePacket : public BaseMessage<ClientboundSetBorderLerpSizePacket>
9 {
10 public:
11 static constexpr std::string_view packet_name = "Set Border Lerp Size";
12
13 SERIALIZED_FIELD(OldSize, double);
14 SERIALIZED_FIELD(NewSize, double);
16
18 };
19} //ProtocolCraft
20#endif