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
23 virtual ~CapacitorComponent() /*override*/ = default;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29 MCAPI ::CircuitComponentType $getCircuitComponentType() const;
30
31
32 // NOLINTEND
33};
Definition CapacitorComponent.h:9