LeviLamina
Loading...
Searching...
No Matches
ScoreboardEventCoordinator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/events/EventCoordinator.h"
7
8// auto generated forward declare list
9// clang-format off
11struct ScoreboardId;
12// clang-format on
13
14class ScoreboardEventCoordinator : public ::EventCoordinator<::ScoreboardEventListener> {
15public:
16 // member functions
17 // NOLINTBEGIN
18 MCAPI void sendOnObjectiveAdded(::std::string const& objective);
19
20 MCAPI void sendOnObjectiveRemoved(::std::string const& objective);
21
22 MCAPI void sendOnScoreChanged(::ScoreboardId const& id, ::std::string const& objective, int score);
23
24 MCAPI void sendOnScoreboardIdentityRemoved(::ScoreboardId const& id);
25 // NOLINTEND
26
27public:
28 // vftables
29 // NOLINTBEGIN
30 MCNAPI static void** $vftable();
31 // NOLINTEND
32};
Definition EventCoordinator.h:6
Definition ScoreboardEventCoordinator.h:14
static MCAPI void ** $vftable()
Definition ScoreboardEventListener.h:13
Definition ScoreboardId.h:11