LeviLamina
Loading...
Searching...
No Matches
PillagerOutpostStart.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/StructureStart.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockSource;
11class BoundingBox;
12class Dimension;
13class Random;
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 1
21 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
22
23 // vIndex: 3
24 virtual int getMaxYSpawnOffset() const /*override*/;
25
26 // vIndex: 4
27 virtual ::std::string_view getStructureName() const /*override*/;
28
29 // vIndex: 0
30 virtual ~PillagerOutpostStart() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI void createOutpost(::Dimension& dim, ::Random& random, int x, int z);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
49
50 MCAPI int $getMaxYSpawnOffset() const;
51
52 MCAPI ::std::string_view $getStructureName() const;
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
Definition BlockSource.h:67
Definition BoundingBox.h:18
Definition Dimension.h:83
Definition PillagerOutpostStart.h:16
Definition Random.h:16
Definition StructureStart.h:13