LeviLamina
Loading...
Searching...
No Matches
OceanMonumentSimpleRoom.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/OceanMonumentPiece.h"
7#include "mc/world/level/levelgen/structure/StructurePieceType.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockSource;
12class BoundingBox;
13class Random;
14class RoomDefinition;
15// clang-format on
16
17class OceanMonumentSimpleRoom : public ::OceanMonumentPiece {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, int> mMainDesign;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 OceanMonumentSimpleRoom();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ::StructurePieceType getType() const /*override*/;
32
33 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI OceanMonumentSimpleRoom(int& orientation, ::std::shared_ptr<::RoomDefinition> definition, ::Random& random);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(int& orientation, ::std::shared_ptr<::RoomDefinition> definition, ::Random& random);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI ::StructurePieceType $getType() const;
52
53 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BlockSource.h:73
Definition BoundingBox.h:13
static MCAPI void ** $vftable()
Definition Random.h:10
Definition RoomDefinition.h:5