LeviLamina
Loading...
Searching...
No Matches
EmptyPoolElement.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/Rotation.h"
7#include "mc/world/level/levelgen/structure/structurepools/StructurePoolElement.h"
8#include "mc/world/level/levelgen/structure/structurepools/StructurePoolElementType.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockPos;
13class BlockSource;
14class BoundingBox;
15class JigsawBlockInfo;
17// clang-format on
18
19class EmptyPoolElement : public ::StructurePoolElement {
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual ::BlockPos getSize(::Rotation rotation) const /*override*/;
24
25 virtual ::std::vector<::JigsawBlockInfo> getJigsawMarkers(::BlockPos position, ::Rotation rotation) const
26 /*override*/;
27
28 virtual ::std::vector<::JigsawBlockInfo>
29 getJigsawMarkers(::BlockPos position, ::LegacyStructureSettings& settings, ::BlockSource* region) const
30 /*override*/;
31
32 virtual ::BoundingBox getBoundingBox(::BlockPos position, ::Rotation rotation) const /*override*/;
33
34 virtual bool isValid() const /*override*/;
35
36 virtual ::StructurePoolElementType type() const /*override*/;
37
38 virtual ~EmptyPoolElement() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCFOLD ::std::vector<::JigsawBlockInfo> $getJigsawMarkers(::BlockPos position, ::Rotation rotation) const;
45
46 MCFOLD ::std::vector<::JigsawBlockInfo>
47 $getJigsawMarkers(::BlockPos position, ::LegacyStructureSettings& settings, ::BlockSource* region) const;
48
49 MCAPI ::BoundingBox $getBoundingBox(::BlockPos position, ::Rotation rotation) const;
50
51 MCFOLD bool $isValid() const;
52
53 MCFOLD ::StructurePoolElementType $type() const;
54
55#ifdef LL_PLAT_C
56 MCFOLD ::BlockPos $getSize(::Rotation rotation) const;
57#endif
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition BlockPos.h:19
Definition BlockSource.h:68
Definition BoundingBox.h:13
Definition EmptyPoolElement.h:19
static MCAPI void ** $vftable()
Definition JigsawBlockInfo.h:14
Definition LegacyStructureSettings.h:22