LeviLamina
Loading...
Searching...
No Matches
OceanMonumentStart.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 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<1, 1, bool> isCreated;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 1
27 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
28
29 // vIndex: 4
30 virtual ::std::string_view getStructureName() const /*override*/;
31
32 // vIndex: 0
33 virtual ~OceanMonumentStart() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI void createMonument(::Dimension& dim, ::Random& random, int x, int z);
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
46
47 MCAPI ::std::string_view $getStructureName() const;
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
Definition BlockSource.h:66
Definition BoundingBox.h:13
Definition Dimension.h:83
Definition OceanMonumentStart.h:16
static MCAPI void ** $vftable()
Definition Random.h:10
Definition StructureStart.h:15