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
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 1
23 virtual ::std::string const& getName() const /*override*/;
24
25 // vIndex: 2
26 virtual void executeAction(::RenderParams& params) const /*override*/;
27
28 // vIndex: 3
29 virtual void buildSchema(
31 ::Factory<::EventResponse> const& factory
32 ) const /*override*/;
33
34 // vIndex: 0
35 virtual ~CommandResponse() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCNAPI ::std::string const& $getName() const;
42
43 MCNAPI void $executeAction(::RenderParams& params) const;
44
45 MCNAPI void $buildSchema(
47 ::Factory<::EventResponse> const& factory
48 ) const;
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftableForCommandResponseBase();
55
56 MCNAPI static void** $vftableForEventResponse();
57 // NOLINTEND
58};
Definition CommandResponseBase.h:14
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:16
Definition Factory.h:6
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
Definition EventResponseCollection.h:10