Botcraft 1.21.11
Loading...
Searching...
No Matches
ClientboundMountScreenOpenPacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 773 /* > 1.21.10 */
2#pragma once
3
5
6namespace ProtocolCraft
7{
8 class ClientboundMountScreenOpenPacket : public BasePacket<ClientboundMountScreenOpenPacket>
9 {
10 public:
11 static constexpr std::string_view packet_name = "Mount Screen Open";
12
13 SERIALIZED_FIELD(ContainerId, VarInt);
14 SERIALIZED_FIELD(InventoryColumns, VarInt);
15 SERIALIZED_FIELD(EntityId, int);
16
18 };
19} //ProtocolCraft
20#endif