Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundPlayerInfoRemovePacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 760 /* > 1.19.2 */
2#pragma once
3
4#include <vector>
5
7
8namespace ProtocolCraft
9{
10 class ClientboundPlayerInfoRemovePacket : public BaseMessage<ClientboundPlayerInfoRemovePacket>
11 {
12 public:
13 static constexpr std::string_view packet_name = "Player Info Remove";
14
15 SERIALIZED_FIELD(ProfileIds, std::vector<UUID>);
16
18 };
19} //ProtocolCraft
20#endif
SERIALIZED_FIELD(ProfileIds, std::vector< UUID >)