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