LeviLamina
Loading...
Searching...
No Matches
CapacitorComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/redstone/circuit/components/CircuitComponentType.h"
7#include "mc/world/redstone/circuit/components/ProducerComponent.h"
8
9class CapacitorComponent : public ::ProducerComponent {
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<8, 8, ::CircuitComponentType const> mCircuitComponentType;
14 // NOLINTEND
15
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual uchar getPoweroutDirection() const;
20
21 virtual ::CircuitComponentType getCircuitComponentType() const /*override*/;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27 MCAPI ::CircuitComponentType $getCircuitComponentType() const;
28
29
30 // NOLINTEND
31};
Definition CapacitorComponent.h:9