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