LeviLamina
Loading...
Searching...
No Matches
StructureStart.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockSource;
8class BoundingBox;
9class Random;
10class StructurePiece;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<4, 24, ::BoundingBox> boundingBox;
18 ::ll::TypedStorage<4, 4, int> chunkX;
19 ::ll::TypedStorage<4, 4, int> chunkZ;
20 ::ll::TypedStorage<8, 24, ::std::vector<::std::unique_ptr<::StructurePiece>>> pieces;
21 ::ll::TypedStorage<4, 4, int> maxYSpawnOffset;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 0
28 virtual ~StructureStart();
29
30 // vIndex: 1
31 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
32
33 // vIndex: 2
34 virtual bool isValid() const;
35
36 // vIndex: 3
37 virtual int getMaxYSpawnOffset() const;
38
39 // vIndex: 4
40 virtual ::std::string_view getStructureName() const = 0;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI void calculateBoundingBox();
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCAPI void $dtor();
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
59
60 MCFOLD bool $isValid() const;
61
62 MCFOLD int $getMaxYSpawnOffset() const;
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCAPI static void** $vftable();
69 // NOLINTEND
70};
Definition BlockSource.h:67
Definition BoundingBox.h:18
Definition Random.h:16
Definition StructurePiece.h:18
Definition StructureStart.h:13