LeviLamina
Loading...
Searching...
No Matches
FlowerBedFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/feature/Feature.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class BlockSource;
12class Random;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 FlowerBedFeature& operator=(FlowerBedFeature const&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 4
32 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const /*override*/;
33
34 // vIndex: 0
35 virtual ~FlowerBedFeature() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCNAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCNAPI static void** $vftable();
48 // NOLINTEND
49};
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Feature.h:18
Definition FlowerBedFeature.h:15
static MCAPI void ** $vftable()
MCAPI bool $place(::BlockSource &region, ::BlockPos const &pos, ::Random &random) const
Definition Random.h:11
Definition Alias.h:14