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 MCNAPI StrongholdStart(::Dimension& dimension, ::Random& random, int chunkX, int chunkZ);
44
45 MCNAPI void _initializePieceSet(::Random& random);
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCNAPI void* $ctor(::Dimension& dimension, ::Random& random, int chunkX, int chunkZ);
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI bool $isValid() const;
58
59 MCNAPI ::std::string_view $getStructureName() const;
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition Dimension.h:83
Definition Random.h:11
Definition StrongholdStart.h:14
MCAPI bool $isValid() const
MCAPI void _initializePieceSet(::Random &random)
MCAPI::std::string_view $getStructureName() const
MCAPI StrongholdStart(::Dimension &dimension, ::Random &random, int chunkX, int chunkZ)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::Dimension &dimension, ::Random &random, int chunkX, int chunkZ)
Definition StructureStart.h:15
Definition Alias.h:14