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