Botcraft 1.21.10
Loading...
Searching...
No Matches
Path.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 772 /* > 1.21.8 */
2#pragma once
3
6
9
10namespace ProtocolCraft
11{
12 class Path : public NetworkType
13 {
14 SERIALIZED_FIELD(Reached, bool);
15 SERIALIZED_FIELD(NextNodeIndex, int);
17 SERIALIZED_FIELD(Nodes, std::vector<Node>);
19
21 };
22}
23#endif
SERIALIZED_FIELD(DebugData, PathDebugData)
SERIALIZED_FIELD(Target, NetworkPosition)
SERIALIZED_FIELD(Nodes, std::vector< Node >)
SERIALIZED_FIELD(NextNodeIndex, int)
SERIALIZED_FIELD(Reached, bool)