LeviLamina
Loading...
Searching...
No Matches
DirectionalProducerComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/redstone/circuit/components/ProducerComponent.h"
7
8// auto generated forward declare list
9// clang-format off
12// clang-format on
13
15public:
16 // DirectionalProducerComponent inner types define
17 using AllowedConnections = ::std::bitset<6>;
18
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 4, ::std::bitset<6>> mAllowedConnections;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 12
29 virtual bool
30 allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered) /*override*/;
31
32 // vIndex: 0
33 virtual ~DirectionalProducerComponent() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered);
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftable();
52 // NOLINTEND
53};
Definition CircuitSceneGraph.h:19
Definition CircuitTrackingInfo.h:14
Definition DirectionalProducerComponent.h:14
Definition ProducerComponent.h:17