LeviLamina
Loading...
Searching...
No Matches
ActorEventResponse.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
9// auto generated forward declare list
10// clang-format off
11class RenderParams;
13namespace JsonUtil { class EmptyClass; }
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual ~ActorEventResponse() = default;
21
22 virtual ::std::string const& getName() const;
23
24 virtual void executeAction(::RenderParams&) const = 0;
25
26 virtual void buildSchema(
28 schema,
30 ) const;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCNAPI ::std::string const& $getName() const;
37
38 MCNAPI void $buildSchema(
40 schema,
42 ) const;
43
44
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
Definition ActorEventResponse.h:16
MCAPI::std::string const & $getName() const
static MCAPI void ** $vftable()
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::ActorEventResponseCollection > > &schema, ::Factory<::ActorEventResponse > const &factory) const
Definition Factory.h:6
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
Definition ActorEventResponseCollection.h:10