LeviLamina
Loading...
Searching...
No Matches
BiomeDecorationFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7#include "mc/deps/game_refs/WeakRef.h"
8#include "mc/world/level/ScatterParams.h"
9
10// auto generated forward declare list
11// clang-format off
12class IFeature;
13// clang-format on
14
15struct BiomeDecorationFeature {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 216, ::ScatterParams> mScatter;
20 ::ll::TypedStorage<8, 24, ::WeakRef<::IFeature>> mFeature;
21 ::ll::TypedStorage<8, 48, ::HashedString> mIdentifier;
22 ::ll::TypedStorage<8, 32, ::std::string> mPass;
23 ::ll::TypedStorage<1, 1, bool> mCanUseInternalFeature;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 BiomeDecorationFeature& operator=(BiomeDecorationFeature const&);
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI BiomeDecorationFeature();
34
35 MCAPI BiomeDecorationFeature(::BiomeDecorationFeature&&);
36
37 MCAPI BiomeDecorationFeature(::BiomeDecorationFeature const&);
38
39 MCAPI bool canUseFeature(::IFeature const& mFeatureValue) const;
40
41 MCAPI ~BiomeDecorationFeature();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor();
48
49 MCAPI void* $ctor(::BiomeDecorationFeature&&);
50
51 MCAPI void* $ctor(::BiomeDecorationFeature const&);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCAPI void $dtor();
58 // NOLINTEND
59};
Definition IFeature.h:18