LeviLamina
Loading...
Searching...
No Matches
SearchFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/feature/IFeature.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11// clang-format on
12
13class SearchFeature : public ::IFeature {
14public:
15 // SearchFeature inner types define
16 enum class SearchAxis : int {
17 NegativeX = 0,
18 PositiveX = 1,
19 NegativeY = 2,
20 PositiveY = 3,
21 NegativeZ = 4,
22 PositiveZ = 5,
23 };
24
25public:
26 // member variables
27 // NOLINTBEGIN
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 SearchFeature& operator=(SearchFeature const&);
39
40public:
41 // virtual functions
42 // NOLINTBEGIN
43 // vIndex: 0
44 virtual ~SearchFeature() /*override*/ = default;
45
46 // vIndex: 1
47 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition BlockPos.h:18
Definition IFeature.h:13
Definition SearchFeature.h:13
Definition IFeature.h:21
Definition context.h:5
Definition Alias.h:14