LeviLamina
Loading...
Searching...
No Matches
NoSurfaceOreFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/IntRange.h"
7#include "mc/world/level/block/BlockDescriptor.h"
8#include "mc/world/level/levelgen/feature/IFeature.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockPos;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 8, ::IntRange> mCount;
20 ::ll::TypedStorage<8, 184, ::BlockDescriptor> mPlaceBlock;
21 ::ll::TypedStorage<8, 184, ::BlockDescriptor> mReplaceBlock;
22 ::ll::TypedStorage<8, 184, ::BlockDescriptor> mAvoidsBlock;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 1
29 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
30
31 // vIndex: 0
32 virtual ~NoSurfaceOreFeature() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCNAPI static void** $vftable();
45 // NOLINTEND
46};
Definition BlockPos.h:17
Definition IFeature.h:18
Definition NoSurfaceOreFeature.h:15
static MCAPI void ** $vftable()
Definition IFeature.h:26
Definition context.h:5