LeviLamina
Loading...
Searching...
No Matches
ActorQueueCommandResponse.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/Factory.h"
7#include "mc/util/json_util/JsonSchemaObjectNode.h"
8#include "mc/world/level/CommandOriginSystem.h"
9#include "mc/world/response/ActorEventResponse.h"
10#include "mc/world/response/CommandResponseBase.h"
11
12// auto generated forward declare list
13// clang-format off
14class RenderParams;
16namespace JsonUtil { class EmptyClass; }
17// clang-format on
18
19class ActorQueueCommandResponse : public ::CommandResponseBase, public ::ActorEventResponse {
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual ::std::string const& getName() const /*override*/;
24
25 virtual void executeAction(::RenderParams& params) const /*override*/;
26
27 virtual void buildSchema(
29 schema,
31 ) const /*override*/;
32
33 virtual ::CommandOriginSystem _getCommandOriginSystem() const /*override*/;
34
35 virtual ~ActorQueueCommandResponse() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // static variables
40 // NOLINTBEGIN
41 MCNAPI static ::std::string const& NameID();
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCNAPI ::std::string const& $getName() const;
48
49 MCNAPI void $executeAction(::RenderParams& params) const;
50
51 MCNAPI void $buildSchema(
53 schema,
55 ) const;
56
57 MCNAPI ::CommandOriginSystem $_getCommandOriginSystem() const;
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftableForActorEventResponse();
66
67 MCNAPI static void** $vftableForCommandResponseBase();
68 // NOLINTEND
69};
Definition ActorEventResponse.h:16
Definition ActorQueueCommandResponse.h:19
MCAPI::std::string const & $getName() const
MCAPI void $executeAction(::RenderParams &params) const
static MCAPI void ** $vftableForActorEventResponse()
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection > > &schema, ::Factory<::ActorEventResponse > const &factory) const
static MCAPI ::std::string const & NameID()
static MCAPI void ** $vftableForCommandResponseBase()
MCAPI::CommandOriginSystem $_getCommandOriginSystem() const
Definition Factory.h:6
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
Definition ActorEventResponseCollection.h:10