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
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 0
24 virtual ::BlockPos getSize(::Rotation rotation) const /*override*/;
25
26 // vIndex: 2
27 virtual ::std::vector<::JigsawBlockInfo> getJigsawMarkers(::BlockPos position, ::Rotation rotation) const
28 /*override*/;
29
30 // vIndex: 1
31 virtual ::std::vector<::JigsawBlockInfo>
32 getJigsawMarkers(::BlockPos position, ::LegacyStructureSettings& settings, ::BlockSource* region) const
33 /*override*/;
34
35 // vIndex: 3
36 virtual ::BoundingBox getBoundingBox(::BlockPos position, ::Rotation rotation) const /*override*/;
37
38 // vIndex: 13
39 virtual bool isValid() const /*override*/;
40
41 // vIndex: 15
42 virtual ::StructurePoolElementType type() const /*override*/;
43
44 // vIndex: 14
45 virtual ~EmptyPoolElement() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI ::BlockPos $getSize(::Rotation rotation) const;
52
53 MCNAPI ::std::vector<::JigsawBlockInfo> $getJigsawMarkers(::BlockPos position, ::Rotation rotation) const;
54
55 MCNAPI ::std::vector<::JigsawBlockInfo>
57
58 MCNAPI ::BoundingBox $getBoundingBox(::BlockPos position, ::Rotation rotation) const;
59
60 MCNAPI bool $isValid() const;
61
62 MCNAPI ::StructurePoolElementType $type() const;
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition BoundingBox.h:13
Definition EmptyPoolElement.h:19
MCAPI ::std::vector<::JigsawBlockInfo > $getJigsawMarkers(::BlockPos position, ::Rotation rotation) const
MCAPI::BoundingBox $getBoundingBox(::BlockPos position, ::Rotation rotation) const
static MCAPI void ** $vftable()
MCAPI ::std::vector<::JigsawBlockInfo > $getJigsawMarkers(::BlockPos position, ::LegacyStructureSettings &settings, ::BlockSource *region) const
MCAPI::StructurePoolElementType $type() const
MCAPI::BlockPos $getSize(::Rotation rotation) const
MCAPI bool $isValid() const
Definition JigsawBlockInfo.h:12
Definition LegacyStructureSettings.h:22
Definition StructurePoolElement.h:35