LeviLamina
Loading...
Searching...
No Matches
ActorCommandResponse.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/ActorEventResponse.h"
9#include "mc/world/response/CommandResponseBase.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 root,
33 ) const /*override*/;
34
35 // vIndex: 0
36 virtual ~ActorCommandResponse() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCNAPI ::std::string const& $getName() const;
43
44 MCNAPI void $executeAction(::RenderParams& params) const;
45
46 MCNAPI void $buildSchema(
48 root,
50 ) const;
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftableForActorEventResponse();
57
58 MCNAPI static void** $vftableForCommandResponseBase();
59 // NOLINTEND
60};
Definition ActorCommandResponse.h:18
static MCAPI void ** $vftableForActorEventResponse()
MCAPI::std::string const & $getName() const
static MCAPI void ** $vftableForCommandResponseBase()
MCAPI void $executeAction(::RenderParams &params) const
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection > > &root, ::Factory<::ActorEventResponse > const &factory) const
Definition ActorEventResponse.h:16
Definition CommandResponseBase.h:14
Definition Factory.h:6
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
Definition ActorEventResponseCollection.h:10