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
35 virtual ~NBStartPiece() /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI NBStartPiece(::Random& random, int west, int north);
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::Random& random, int west, int north);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI ::StructurePieceType $getType() const;
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition NBBridgeCrossing.h:17
static MCAPI void ** $vftable()
Definition PieceWeight.h:5
Definition Random.h:10
Definition StructurePiece.h:18