LeviLamina
Loading...
Searching...
No Matches
UnderwaterCaveFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/feature/CaveFeature.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BoundingBox;
12class ChunkPos;
14class Random;
15class Vec3;
16namespace CaveFeatureUtils { struct CarverConfiguration; }
17namespace CaveFeatureUtils { struct CarvingParameters; }
18// clang-format on
19
21public:
22 // member variables
23 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 6
37 virtual bool carveEllipsoidVolume(
38 ::IBlockWorldGenAPI& target,
39 ::CaveFeatureUtils::CarverConfiguration const& configuration,
40 ::Random& random,
41 ::ChunkPos const& pos,
42 ::Vec3 const& startPos,
43 ::BoundingBox const& volume,
44 float rad,
45 float yRad,
47 ) const /*override*/;
48
49 // vIndex: 0
50 virtual ~UnderwaterCaveFeature() /*override*/ = default;
51 // NOLINTEND
52
53public:
54 // static functions
55 // NOLINTBEGIN
56 MCAPI static bool isDiggable(::Block const& block);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI bool $carveEllipsoidVolume(
69 ::IBlockWorldGenAPI& target,
70 ::CaveFeatureUtils::CarverConfiguration const& configuration,
71 ::Random& random,
72 ::ChunkPos const& pos,
73 ::Vec3 const& startPos,
74 ::BoundingBox const& volume,
75 float rad,
76 float yRad,
78 ) const;
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCAPI static void** $vftable();
85 // NOLINTEND
86};
Definition Block.h:36
Definition BoundingBox.h:18
Definition CaveFeature.h:21
Definition ChunkPos.h:11
Definition IBlockWorldGenAPI.h:25
Definition Random.h:16
Definition UnderwaterCaveFeature.h:20
Definition Vec3.h:10
Definition CarverConfiguration.h:7
Definition CarvingParameters.h:7
Definition Alias.h:14