LeviLamina
Loading...
Searching...
No Matches
RectLayoutFeature.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 // RectLayoutFeature inner types declare
16 // clang-format off
17 struct FeatureArea;
18 // clang-format on
19
20 // RectLayoutFeature inner types define
21 struct FeatureArea {
22 public:
23 // member variables
24 // NOLINTBEGIN
30 // NOLINTEND
31
32 public:
33 // prevent constructor by default
34 FeatureArea& operator=(FeatureArea const&);
37 };
38
39public:
40 // member variables
41 // NOLINTBEGIN
44 // NOLINTEND
45
46public:
47 // prevent constructor by default
48 RectLayoutFeature& operator=(RectLayoutFeature const&);
51
52public:
53 // virtual functions
54 // NOLINTBEGIN
55 // vIndex: 1
56 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
57
58 // vIndex: 0
59 virtual ~RectLayoutFeature() /*override*/ = default;
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCAPI static void** $vftable();
78 // NOLINTEND
79};
Definition BlockPos.h:18
Definition IFeature.h:13
Definition RectLayoutFeature.h:13
Definition IFeature.h:21
Definition RectLayoutFeature.h:21
Definition context.h:5
Definition Alias.h:14