LeviLamina
Loading...
Searching...
No Matches
TeleportResponse.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 TeleportResponse : public ::EventResponse {
18public:
19 // member variables
20 // NOLINTBEGIN
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 TeleportResponse& operator=(TeleportResponse const&);
31 TeleportResponse(TeleportResponse const&);
32 TeleportResponse();
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 virtual ::std::string const& getName() const /*override*/;
38
39 virtual void executeAction(::RenderParams& params) const /*override*/;
40
41 virtual void buildSchema(
43 ::Factory<::EventResponse> const& factory
44 ) const /*override*/;
45
46 virtual ~TeleportResponse() /*override*/ = default;
47 // NOLINTEND
48
49public:
50 // static variables
51 // NOLINTBEGIN
52 MCNAPI static ::std::string const& NameID();
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCNAPI ::std::string const& $getName() const;
59
60 MCNAPI void $executeAction(::RenderParams& params) const;
61
62 MCNAPI void $buildSchema(
64 ::Factory<::EventResponse> const& factory
65 ) const;
66
67
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
Definition EventResponse.h:16
Definition Factory.h:6
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection > > &schema, ::Factory<::EventResponse > const &factory) const
static MCAPI ::std::string const & NameID()
static MCAPI void ** $vftable()
MCAPI void $executeAction(::RenderParams &params) const
MCAPI::std::string const & $getName() const
Definition EventResponseCollection.h:10
Definition Alias.h:14