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 Random;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 NBStartPiece& operator=(NBStartPiece const&);
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 // destructor thunk
54 // NOLINTBEGIN
55
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI ::StructurePieceType $getType() const;
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCAPI static void** $vftable();
68 // NOLINTEND
69};
Definition NBBridgeCrossing.h:17
Definition NBStartPiece.h:14
Definition Random.h:16
Definition Alias.h:14