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 MCAPI static ::std::string const& STRUCTURE_LOCATION_IGLOO_NO_TRAPDOOR();
52
53 MCAPI static ::std::string const& STRUCTURE_LOCATION_IGLOO_TRAPDOOR();
54
55 MCAPI static ::std::string const& STRUCTURE_LOCATION_LABORATORY();
56
57 MCAPI static ::std::string const& STRUCTURE_LOCATION_LADDER();
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCAPI ::StructurePieceType $getType() const;
70
71 MCAPI bool $postProcess(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
72
73 MCAPI void $postProcessMobsAt(::BlockSource& region, ::Random& random, ::BoundingBox const& chunkBB);
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCAPI static void** $vftable();
80 // NOLINTEND
81};
Definition BlockSource.h:67
Definition BoundingBox.h:18
Definition Igloo.h:16
Definition Random.h:16
Definition ScatteredFeaturePiece.h:14
Definition Alias.h:14