LeviLamina
Loading...
Searching...
No Matches
MossStoneSelector.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/BlockSelector.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class Random;
12// clang-format on
13
15public:
16 // MossStoneSelector inner types declare
17 // clang-format off
18 struct LocalRegistry;
19 // clang-format on
20
21 // MossStoneSelector inner types define
23 public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<8, 8, ::Block const*> mCobblestone;
27 ::ll::TypedStorage<8, 8, ::Block const*> mMossyCobblestone;
28 // NOLINTEND
29 };
30
31public:
32 // member variables
33 // NOLINTBEGIN
34 ::ll::TypedStorage<8, 16, ::MossStoneSelector::LocalRegistry> mLocalRegistry;
35 // NOLINTEND
36
37public:
38 // virtual functions
39 // NOLINTBEGIN
40 // vIndex: 1
41 virtual ::Block const& next(::Random& random, int, int, int, bool) const /*override*/;
42
43 // vIndex: 0
44 virtual ~MossStoneSelector() /*override*/;
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCFOLD void $dtor();
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI ::Block const& $next(::Random& random, int, int, int, bool) const;
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
Definition BlockSelector.h:11
Definition Block.h:37
Definition MossStoneSelector.h:14
static MCAPI void ** $vftable()
Definition Random.h:10
Definition MossStoneSelector.h:22