LeviLamina
Loading...
Searching...
No Matches
BeardDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/v1/BeardingDescriptionCache.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11struct BeardKernel;
12// clang-format on
13
14class BeardDescription {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 40, ::BeardingDescriptionCache const> mCache;
19 ::ll::TypedStorage<8, 8, ::BeardKernel const&> mBeardKernel;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 BeardDescription& operator=(BeardDescription const&);
25 BeardDescription(BeardDescription const&);
26 BeardDescription();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI BeardDescription(::BeardingDescriptionCache cache, ::BeardKernel const& beardKernel);
32
33 MCAPI float calculateContribution(::BlockPos const& pos) const;
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::BeardingDescriptionCache cache, ::BeardKernel const& beardKernel);
40 // NOLINTEND
41};
Definition BeardingDescriptionCache.h:8
Definition BlockPos.h:21
Definition BeardKernel.h:5