LeviLamina
Loading...
Searching...
No Matches
StructureTemplateFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/Direction.h"
7#include "mc/world/level/levelgen/feature/IFeature.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::StructureTemplate*> mStructure;
21 ::ll::TypedStorage<4, 4, int> mAdjustmentRadius;
22 ::ll::TypedStorage<1, 1, ::Direction::Type> mFaceDirection;
23 ::ll::TypedStorage<8, 24, ::std::vector<::std::unique_ptr<::IStructureConstraint>>> mConstraints;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~StructureTemplateFeature() /*override*/ = default;
31
32 // vIndex: 1
33 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftable();
52 // NOLINTEND
53};
Definition BlockPos.h:18
Definition IFeature.h:13
Definition IStructureConstraint.h:14
Definition StructureTemplateFeature.h:16
Definition StructureTemplate.h:32
Definition IFeature.h:21
Definition context.h:5