LeviLamina
Loading...
Searching...
No Matches
CircuitTrackingInfo.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
8// auto generated forward declare list
9// clang-format off
11class BlockPos;
12// clang-format on
13
15public:
16 // CircuitTrackingInfo inner types declare
17 // clang-format off
18 class Entry;
19 // clang-format on
20
21 // CircuitTrackingInfo inner types define
22 class Entry {
23 public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<8, 8, ::BaseCircuitComponent*> mComponent;
27 ::ll::TypedStorage<4, 12, ::BlockPos> mPos;
28 ::ll::TypedStorage<1, 1, uchar> mDirection;
29 ::ll::TypedStorage<8, 8, ::CircuitComponentType> mTypeID;
30 // NOLINTEND
31 };
32
33public:
34 // member variables
35 // NOLINTBEGIN
36 ::ll::TypedStorage<8, 32, ::CircuitTrackingInfo::Entry> mCurrent;
37 ::ll::TypedStorage<8, 32, ::CircuitTrackingInfo::Entry> mPower;
38 ::ll::TypedStorage<8, 32, ::CircuitTrackingInfo::Entry> mNearest;
39 ::ll::TypedStorage<8, 32, ::CircuitTrackingInfo::Entry> m2ndNearest;
40 ::ll::TypedStorage<4, 4, int> mDampening;
41 ::ll::TypedStorage<1, 1, bool> mDirectlyPowered;
42 ::ll::TypedStorage<4, 4, int> mData;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI CircuitTrackingInfo(::gsl::not_null<::BaseCircuitComponent*> component, ::BlockPos const& pos, int dampening);
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(::gsl::not_null<::BaseCircuitComponent*> component, ::BlockPos const& pos, int dampening);
55 // NOLINTEND
56};
Definition BaseCircuitComponent.h:20
Definition BlockPos.h:18
Definition CircuitTrackingInfo.h:22
Definition CircuitTrackingInfo.h:14