LeviLamina
Loading...
Searching...
No Matches
TransformItemResponse.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/EventResponse.h"
9
10// auto generated forward declare list
11// clang-format off
12class RenderParams;
14namespace JsonUtil { class EmptyClass; }
15// clang-format on
16
17class TransformItemResponse : public ::EventResponse {
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 TransformItemResponse& operator=(TransformItemResponse const&);
27 TransformItemResponse(TransformItemResponse const&);
28 TransformItemResponse();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ::std::string const& getName() const /*override*/;
34
35 virtual void executeAction(::RenderParams& params) const /*override*/;
36
37 virtual void buildSchema(
39 ::Factory<::EventResponse> const& factory
40 ) const /*override*/;
41
42 virtual ~TransformItemResponse() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // static variables
47 // NOLINTBEGIN
48 MCNAPI static ::std::string const& NameID();
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCNAPI ::std::string const& $getName() const;
55
56 MCNAPI void $executeAction(::RenderParams& params) const;
57
58 MCNAPI void $buildSchema(
60 ::Factory<::EventResponse> const& factory
61 ) const;
62
63
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
Definition EventResponse.h:16
Definition Factory.h:6
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
MCAPI void $executeAction(::RenderParams &params) const
static MCAPI ::std::string const & NameID()
MCAPI::std::string const & $getName() const
static MCAPI void ** $vftable()
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection > > &schema, ::Factory<::EventResponse > const &factory) const
Definition EventResponseCollection.h:10
Definition Alias.h:14