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 root,
31 ) const /*override*/;
32
33 virtual ::CommandOriginSystem _getCommandOriginSystem() const /*override*/;
34 // NOLINTEND
35
36public:
37 // static variables
38 // NOLINTBEGIN
39 MCNAPI static ::std::string const& NameID();
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCNAPI ::std::string const& $getName() const;
46
47 MCNAPI void $executeAction(::RenderParams& params) const;
48
49 MCNAPI void $buildSchema(
51 root,
53 ) const;
54
55 MCNAPI ::CommandOriginSystem $_getCommandOriginSystem() const;
56
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftableForActorEventResponse();
64
65 MCNAPI static void** $vftableForCommandResponseBase();
66 // NOLINTEND
67};
Definition ActorEventResponse.h:16
Definition ActorQueueCommandResponse.h:19
MCAPI::std::string const & $getName() const
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection > > &root, ::Factory<::ActorEventResponse > const &factory) const
MCAPI void $executeAction(::RenderParams &params) const
static MCAPI void ** $vftableForActorEventResponse()
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:16