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
16class NBStartPiece : public ::NBBridgeCrossing {
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
28 NBStartPiece();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ::StructurePieceType getType() const /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI NBStartPiece(::Random& random, int west, int north);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::Random& random, int west, int north);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI ::StructurePieceType $getType() const;
52
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition NBBridgeCrossing.h:17
static MCAPI void ** $vftable()
Definition PieceWeight.h:5
Definition Random.h:10
Definition StructurePiece.h:21