LeviLamina
Loading...
Searching...
No Matches
SetBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h"
7#include "mc/util/Factory.h"
8#include "mc/world/response/EventResponse.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockDescriptor;
13class RenderParams;
15namespace JsonUtil { class EmptyClass; }
16// clang-format on
17
18class SetBlock : public ::EventResponse {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 184, ::BlockDescriptor> mBlockType;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 1
29 virtual ::std::string const& getName() const /*override*/;
30
31 // vIndex: 2
32 virtual void executeAction(::RenderParams& params) const /*override*/;
33
34 // vIndex: 3
35 virtual void buildSchema(
37 ::Factory<::EventResponse> const& factory
38 ) const /*override*/;
39
40 // vIndex: 0
41 virtual ~SetBlock() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // static variables
46 // NOLINTBEGIN
47 MCAPI static ::std::string const& NameID();
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI ::std::string const& $getName() const;
60
61 MCAPI void $executeAction(::RenderParams& params) const;
62
63 MCAPI void $buildSchema(
65 ::Factory<::EventResponse> const& factory
66 ) const;
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition BlockDescriptor.h:19
Definition EventResponse.h:16
Definition Factory.h:6
Definition JsonSchemaObjectNode.h:8
Definition RenderParams.h:30
Definition SetBlock.h:18
Definition EventResponseCollection.h:10