LeviLamina
Loading...
Searching...
No Matches
BlockGeometryComponent.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/world/level/block/components/BlockGeometryDescription.h"
8
9// auto generated forward declare list
10// clang-format off
12namespace ClientBlockPipeline { struct BlockSchematic; }
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 48, ::HashedString> mGeometryName;
20 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::ClientBlockPipeline::BlockSchematic>> mBlockSchematic;
21 ::ll::TypedStorage<1, 1, bool> mNeedsLegacyTopRotation;
22 ::ll::TypedStorage<1, 1, bool> mUseLegacyBlockLightAbsorption;
23 ::ll::TypedStorage<1, 1, bool> mIsFullBlock;
24 ::ll::TypedStorage<1, 1, bool> mIgnoreGeometryForIsSolid;
25 ::ll::TypedStorage<8, 48, ::HashedString> mCullingLayer;
26 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::BlockGeometryDescription::SharedInitializationData>>
27 mSharedInitializationData;
28 ::ll::TypedStorage<8, 24, ::std::variant<bool, ::std::set<::HashedString>>> mUVsLocked;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI explicit BlockGeometryComponent(::BlockGeometryDescription const& blockGeometryDescription);
41
42 MCNAPI ::BlockGeometryComponent& operator=(::BlockGeometryComponent&&);
43
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCNAPI void* $ctor(::BlockGeometryDescription const& blockGeometryDescription);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCNAPI void $dtor();
57 // NOLINTEND
58};
Definition BlockGeometryComponent.h:15
MCAPI::BlockGeometryComponent & operator=(::BlockGeometryComponent &&)
MCAPI BlockGeometryComponent(::BlockGeometryDescription const &blockGeometryDescription)
MCAPI void * $ctor(::BlockGeometryDescription const &blockGeometryDescription)
Definition BlockGeometryDescription.h:17