LeviLamina
Loading...
Searching...
No Matches
BlockMaterialInstancesComponent.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/BlockRenderLayer.h"
8
9// auto generated forward declare list
10// clang-format off
13// clang-format on
14
15struct BlockMaterialInstancesComponent {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::BlockMaterialInstance>> mMaterials;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 BlockMaterialInstancesComponent();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI explicit BlockMaterialInstancesComponent(
30 ::BlockMaterialInstancesDescription const& blockMaterialInstancesDescription
31 );
32
33#ifdef LL_PLAT_C
34 MCAPI ::BlockRenderLayer getRenderLayer() const;
35#endif
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(::BlockMaterialInstancesDescription const& blockMaterialInstancesDescription);
42 // NOLINTEND
43};
Definition BlockMaterialInstance.h:17
Definition BlockMaterialInstancesDescription.h:24