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
18 ::ll::TypedStorage<1, 1, bool> mValid;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 0
29 virtual ~StrongholdStart() /*override*/ = default;
30
31 // vIndex: 2
32 virtual bool isValid() const /*override*/;
33
34 // vIndex: 4
35 virtual ::std::string_view getStructureName() const /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI StrongholdStart(::Dimension& dimension, ::Random& random, int chunkX, int chunkZ);
42
43 MCAPI void _initializePieceSet(::Random& random);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::Dimension& dimension, ::Random& random, int chunkX, int chunkZ);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCFOLD bool $isValid() const;
56
57 MCAPI ::std::string_view $getStructureName() const;
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition Dimension.h:83
Definition Random.h:10
Definition StrongholdStart.h:14
static MCAPI void ** $vftable()
Definition StructureStart.h:15