LeviLamina
Loading...
Searching...
No Matches
EndCityStart.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 ChunkPos;
11class Dimension;
12class Random;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 EndCityStart& operator=(EndCityStart const&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~EndCityStart() /*override*/ = default;
33
34 // vIndex: 2
35 virtual bool isValid() const /*override*/;
36
37 // vIndex: 4
38 virtual ::std::string_view getStructureName() const /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCNAPI void _create(::Dimension& dimension, ::Random& random, ::ChunkPos const& pos);
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCNAPI static int getYPositionForFeature(::ChunkPos const& pos, ::Dimension& dimension);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCNAPI bool $isValid() const;
57
58 MCNAPI ::std::string_view $getStructureName() const;
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition ChunkPos.h:11
Definition Dimension.h:83
Definition EndCityStart.h:15
MCAPI bool $isValid() const
static MCAPI int getYPositionForFeature(::ChunkPos const &pos, ::Dimension &dimension)
MCAPI::std::string_view $getStructureName() const
MCAPI void _create(::Dimension &dimension, ::Random &random, ::ChunkPos const &pos)
static MCAPI void ** $vftable()
Definition Random.h:11
Definition StructureStart.h:15
Definition Alias.h:14