Botcraft 1.21.4
Loading...
Searching...
No Matches
ClientboundResetScorePacket.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION > 764 /* > 1.20.3 */
2#pragma once
3
5
6namespace ProtocolCraft
7{
8 class ClientboundResetScorePacket : public BaseMessage<ClientboundResetScorePacket>
9 {
10 public:
11 static constexpr std::string_view packet_name = "Reset Score";
12
13 SERIALIZED_FIELD(Owner, std::string);
14 SERIALIZED_FIELD(ObjectiveName, std::optional<std::string>);
15
17 };
18} //ProtocolCraft
19#endif
SERIALIZED_FIELD(ObjectiveName, std::optional< std::string >)