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/world/level/block/components/BlockGeometryDescription.h"
7
8// auto generated forward declare list
9// clang-format off
10class HashedString;
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<8, 16, ::std::shared_ptr<::BlockGeometryDescription::SharedInitializationData>>
24 mSharedInitializationData;
25 ::ll::TypedStorage<1, 1, bool> mIsFullBlock;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI explicit BlockGeometryComponent(::BlockGeometryDescription const& blockGeometryDescription);
37
38 MCAPI ::BlockGeometryComponent& operator=(::BlockGeometryComponent&&);
39
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::BlockGeometryDescription const& blockGeometryDescription);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCAPI void $dtor();
53 // NOLINTEND
54};
Definition HashedString.h:5
Definition BlockGeometryComponent.h:15
Definition BlockGeometryDescription.h:16