Botcraft 1.21.4
Loading...
Searching...
No Matches
ServerboundSetCommandBlockPacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 385 /* > 1.12.2 */
2#pragma once
3
6
7namespace ProtocolCraft
8{
9 class ServerboundSetCommandBlockPacket : public BaseMessage<ServerboundSetCommandBlockPacket>
10 {
11 public:
12 static constexpr std::string_view packet_name = "Set Command Block";
13
15 SERIALIZED_FIELD(Command, std::string);
17 SERIALIZED_FIELD(Flags, char);
18
20 };
21} //ProtocolCraft
22#endif