Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundDebugSamplePacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 765 /* > 1.20.4 */
2#pragma once
3
5
6#include <vector>
7
8namespace ProtocolCraft
9{
10 class ClientboundDebugSamplePacket : public BaseMessage<ClientboundDebugSamplePacket>
11 {
12 public:
13 static constexpr std::string_view packet_name = "Debug Sample";
14
15 SERIALIZED_FIELD(Sample, std::vector<long long int>);
16 SERIALIZED_FIELD(DebugSampleType, VarInt);
17
19 };
20} //ProtocolCraft
21#endif
SERIALIZED_FIELD(Sample, std::vector< long long int >)
SERIALIZED_FIELD(DebugSampleType, VarInt)