LeviLamina
Loading...
Searching...
No Matches
Igloo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/ScatteredFeaturePiece.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;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 Igloo& operator=(Igloo const&);
29 Igloo(Igloo const&);
30 Igloo();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 2
36 virtual ::StructurePieceType getType() const /*override*/;
37
38 // vIndex: 4
39 virtual bool postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
40
41 // vIndex: 5
42 virtual void postProcessMobsAt(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB) /*override*/;
43
44 // vIndex: 0
45 virtual ~Igloo() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // static variables
50 // NOLINTBEGIN
51 MCNAPI static ::std::string const& STRUCTURE_LOCATION_IGLOO_NO_TRAPDOOR();
52
53 MCNAPI static ::std::string const& STRUCTURE_LOCATION_IGLOO_TRAPDOOR();
54
55 MCNAPI static ::std::string const& STRUCTURE_LOCATION_LABORATORY();
56
57 MCNAPI static ::std::string const& STRUCTURE_LOCATION_LADDER();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCNAPI ::StructurePieceType $getType() const;
64
65 MCNAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
66
67 MCNAPI void $postProcessMobsAt(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
Definition BlockSource.h:67
Definition BoundingBox.h:13
Definition Igloo.h:16
static MCAPI void ** $vftable()
MCAPI void $postProcessMobsAt(::BlockSource &region, ::Random &random, ::BoundingBox const &chunkBB)
static MCAPI ::std::string const & STRUCTURE_LOCATION_IGLOO_TRAPDOOR()
MCAPI bool $postProcess(::BlockSource &region, ::Random &random, ::BoundingBox const &chunkBB)
static MCAPI ::std::string const & STRUCTURE_LOCATION_IGLOO_NO_TRAPDOOR()
static MCAPI ::std::string const & STRUCTURE_LOCATION_LABORATORY()
MCAPI::StructurePieceType $getType() const
static MCAPI ::std::string const & STRUCTURE_LOCATION_LADDER()
Definition Random.h:11
Definition ScatteredFeaturePiece.h:14
Definition Alias.h:14