LeviLamina
Loading...
Searching...
No Matches
EventResponse.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 ~EventResponse();
21
22 virtual ::std::string const& getName() const;
23
24 virtual void executeAction(::RenderParams&) const = 0;
25
26 virtual void buildSchema(
28 ::Factory<::EventResponse> const& factory
29 ) const;
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCNAPI void $dtor();
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCNAPI ::std::string const& $getName() const;
42
43 MCNAPI void $buildSchema(
45 ::Factory<::EventResponse> const& factory
46 ) const;
47
48
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
Definition EventResponse.h:16
static MCAPI void ** $vftable()
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection > > &schema, ::Factory<::EventResponse > const &factory) const
MCAPI::std::string const & $getName() const
MCAPI void $dtor()
Definition Factory.h:6
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
Definition EventResponseCollection.h:10