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
14class DirectionalProducerComponent : public ::ProducerComponent {
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 virtual bool
29 allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered) /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI DirectionalProducerComponent();
36
37 MCFOLD void setAllowedConnections(::std::bitset<6> allowedConnections);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor();
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI bool $allowConnection(::CircuitSceneGraph& graph, ::CircuitTrackingInfo const& info, bool& bDirectlyPowered);
50
51
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
Definition CircuitSceneGraph.h:19
Definition CircuitTrackingInfo.h:14