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 MCNAPI void createOutpost(::Dimension& dim, ::Random& random, int x, int z);
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCNAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
43
44 MCNAPI int $getMaxYSpawnOffset() const;
45
46 MCNAPI ::std::string_view $getStructureName() const;
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftable();
53 // NOLINTEND
54};
Definition BlockSource.h:67
Definition BoundingBox.h:13
Definition Dimension.h:83
Definition PillagerOutpostStart.h:16
MCAPI int $getMaxYSpawnOffset() const
MCAPI void createOutpost(::Dimension &dim, ::Random &random, int x, int z)
MCAPI::std::string_view $getStructureName() const
static MCAPI void ** $vftable()
MCAPI bool $postProcess(::BlockSource &region, ::Random &random, ::BoundingBox const &chunkBB)
Definition Random.h:11
Definition StructureStart.h:15