LeviLamina
Loading...
Searching...
No Matches
BlockRedstoneConsumerDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/components/BlockComponentDescription.h"
7
8// auto generated forward declare list
9// clang-format off
12// clang-format on
13
14class BlockRedstoneConsumerDescription : public ::BlockComponentDescription {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<1, 1, schar> mMinPower;
19 ::ll::TypedStorage<1, 1, bool> mPropagatePower;
20 ::ll::TypedStorage<1, 1, bool> mConsumePowerAnyDirection;
21 ::ll::TypedStorage<1, 1, bool> mAcceptSameDirection;
22 ::ll::TypedStorage<1, 1, bool> mAcceptHalfPulse;
23 ::ll::TypedStorage<1, 1, bool> mIgnoreFirstUpdate;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 BlockRedstoneConsumerDescription();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ::std::string const& getName() const /*override*/;
34
35 virtual void initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const /*override*/;
36
37 virtual void initializeComponent(::BlockComponentStorage& blockComponentStorage) const /*override*/;
38
39 virtual ~BlockRedstoneConsumerDescription() /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI explicit BlockRedstoneConsumerDescription(::BlockRedstoneConsumerConstructionOptions constructionOptions);
46 // NOLINTEND
47
48public:
49 // static variables
50 // NOLINTBEGIN
51 MCAPI static ::std::string const& NameID();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(::BlockRedstoneConsumerConstructionOptions constructionOptions);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCFOLD void $dtor();
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCAPI ::std::string const& $getName() const;
70
71 MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const;
72
73 MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const;
74
75
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCNAPI static void** $vftable();
82 // NOLINTEND
83};
Definition BlockComponentStorage.h:61
static MCAPI void ** $vftable()
Definition BlockComponentDescription.h:20
Definition BlockRedstoneConsumerConstructionOptions.h:5