LeviLamina
Loading...
Searching...
No Matches
CommandResponse.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/response/CommandResponseBase.h"
9#include "mc/world/response/EventResponse.h"
10
11// auto generated forward declare list
12// clang-format off
13class RenderParams;
15namespace JsonUtil { class EmptyClass; }
16// clang-format on
17
18class CommandResponse : public ::CommandResponseBase, public ::EventResponse {
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual ::std::string const& getName() const /*override*/;
23
24 virtual void executeAction(::RenderParams& params) const /*override*/;
25
26 virtual void buildSchema(
28 ::Factory<::EventResponse> const& factory
29 ) const /*override*/;
30
31 virtual ~CommandResponse() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCNAPI ::std::string const& $getName() const;
38
39 MCNAPI void $executeAction(::RenderParams& params) const;
40
41 MCNAPI void $buildSchema(
43 ::Factory<::EventResponse> const& factory
44 ) const;
45
46
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftableForCommandResponseBase();
53
54 MCNAPI static void** $vftableForEventResponse();
55 // NOLINTEND
56};
Definition CommandResponse.h:18
static MCAPI void ** $vftableForCommandResponseBase()
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection > > &schema, ::Factory<::EventResponse > const &factory) const
static MCAPI void ** $vftableForEventResponse()
MCAPI::std::string const & $getName() const
MCAPI void $executeAction(::RenderParams &params) const
Definition EventResponse.h:17
Definition Factory.h:6
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
Definition EventResponseCollection.h:10