LeviLamina
Loading...
Searching...
No Matches
StrongholdStart.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/StructureStart.h"
7
8// auto generated forward declare list
9// clang-format off
10class Dimension;
11class Random;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 StrongholdStart& operator=(StrongholdStart const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
31 virtual ~StrongholdStart() /*override*/ = default;
32
33 // vIndex: 2
34 virtual bool isValid() const /*override*/;
35
36 // vIndex: 4
37 virtual ::std::string_view getStructureName() const /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI StrongholdStart(::Dimension& dimension, ::Random& random, int chunkX, int chunkZ);
44
45 MCAPI void _initializePieceSet(::Random& random);
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(::Dimension& dimension, ::Random& random, int chunkX, int chunkZ);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCFOLD bool $isValid() const;
64
65 MCAPI ::std::string_view $getStructureName() const;
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCAPI static void** $vftable();
72 // NOLINTEND
73};
Definition Dimension.h:83
Definition Random.h:16
Definition StrongholdStart.h:14
Definition StructureStart.h:13
Definition Alias.h:14