LeviLamina
Loading...
Searching...
No Matches
BonusChestFeature.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 // virtual functions
18 // NOLINTBEGIN
19 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const /*override*/;
20
21 virtual ~BonusChestFeature() /*override*/;
22 // NOLINTEND
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI bool _place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33 MCFOLD void $dtor();
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
40
41
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCNAPI static void** $vftable();
48 // NOLINTEND
49};
Definition BlockPos.h:19
Definition BlockSource.h:68
Definition BonusChestFeature.h:15
static MCAPI void ** $vftable()
Definition Feature.h:18
Definition Random.h:10