LeviLamina
Loading...
Searching...
No Matches
ConditionalListFeature.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
14public:
15 // ConditionalListFeature inner types declare
16 // clang-format off
18 // clang-format on
19
20 // ConditionalListFeature inner types define
21 enum class EarlyOutScheme : int {
22 ConditionSuccess = 0,
23 PlacementSuccess = 1,
24 };
25
27 public:
28 // member variables
29 // NOLINTBEGIN
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
39 };
40
41public:
42 // member variables
43 // NOLINTBEGIN
46 // NOLINTEND
47
48public:
49 // prevent constructor by default
53
54public:
55 // virtual functions
56 // NOLINTBEGIN
57 // vIndex: 0
58 virtual ~ConditionalListFeature() /*override*/ = default;
59
60 // vIndex: 1
61 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCAPI static void** $vftable();
80 // NOLINTEND
81};
Definition BlockPos.h:18
Definition ConditionalListFeature.h:13
Definition IFeature.h:13
Definition ConditionalListFeature.h:26
Definition IFeature.h:21
Definition context.h:5
Definition Alias.h:14