LeviLamina
Loading...
Searching...
No Matches
BeardingDescriptionCache.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/BoundingBox.h"
7
8class BeardingDescriptionCache {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<4, 24, ::BoundingBox> mPieceBounds;
13 ::ll::TypedStorage<4, 4, int> mPieceBaseY;
14 ::ll::TypedStorage<4, 4, int> mXCenter;
15 ::ll::TypedStorage<4, 4, int> mZCenter;
16 ::ll::TypedStorage<4, 4, float> mMaxRadius;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 BeardingDescriptionCache();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI BeardingDescriptionCache(::BoundingBox const& bb, int deltaY);
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCAPI void* $ctor(::BoundingBox const& bb, int deltaY);
33 // NOLINTEND
34};
Definition BoundingBox.h:13