LeviLamina
Loading...
Searching...
No Matches
AncientCityStart.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 BiomeSource;
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 AncientCityStart& operator=(AncientCityStart const&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~AncientCityStart() /*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 MCAPI AncientCityStart(
45 ::Dimension& dimension,
46 ::BiomeSource const& biomeSource,
47 ::Random& random,
48 int chunkX,
49 int chunkZ
50 );
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void*
57 $ctor(::Dimension& dimension, ::BiomeSource const& biomeSource, ::Random& random, int chunkX, int chunkZ);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCFOLD bool $isValid() const;
70
71 MCAPI ::std::string_view $getStructureName() const;
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCAPI static void** $vftable();
78 // NOLINTEND
79};
Definition AncientCityStart.h:15
Definition BiomeSource.h:16
Definition Dimension.h:83
Definition Random.h:16
Definition StructureStart.h:13
Definition Alias.h:14