LeviLamina
Loading...
Searching...
No Matches
NBStartPiece.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/NBBridgeCrossing.h"
7#include "mc/world/level/levelgen/structure/StructurePieceType.h"
8
9// auto generated forward declare list
10// clang-format off
11class PieceWeight;
12class Random;
13class StructurePiece;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 32, ::std::string> previousPiece;
21 ::ll::TypedStorage<8, 24, ::std::vector<::PieceWeight>> availableBridgePieces;
22 ::ll::TypedStorage<8, 24, ::std::vector<::PieceWeight>> availableCastlePieces;
23 ::ll::TypedStorage<8, 24, ::std::vector<::StructurePiece*>> pendingChildren;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 2
34 virtual ::StructurePieceType getType() const /*override*/;
35
36 // vIndex: 0
37 virtual ~NBStartPiece() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI NBStartPiece(::Random& random, int west, int north);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::Random& random, int west, int north);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI ::StructurePieceType $getType() const;
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition NBBridgeCrossing.h:17
Definition NBStartPiece.h:16
static MCAPI void ** $vftable()
Definition PieceWeight.h:5
Definition Random.h:10
Definition StructurePiece.h:18