Botcraft 1.21.4
Loading...
Searching...
No Matches
DataComponentTypeResolvableProfile.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 765 /* > 1.20.4 */
2#pragma once
5
6#include <optional>
7#include <string>
8#include <vector>
9
10namespace ProtocolCraft
11{
12 namespace Components
13 {
15 {
16 SERIALIZED_FIELD(Name, std::optional<std::string>);
17 SERIALIZED_FIELD(Uuid, std::optional<UUID>);
18 SERIALIZED_FIELD(Properties, std::vector<GameProfileProperty>);
19
21 };
22 }
23}
24#endif
SERIALIZED_FIELD(Properties, std::vector< GameProfileProperty >)