LeviLamina
Loading...
Searching...
No Matches
VillageStart.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;
13class Random;
14// clang-format on
15
16class VillageStart : public ::StructureStart {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<1, 1, bool> mValid;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 VillageStart();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~VillageStart() /*override*/ = default;
31
32 virtual bool isValid() const /*override*/;
33
34 virtual ::std::string_view getStructureName() const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI VillageStart(
41 ::Dimension& generator,
42 ::BiomeSource const& biomeSource,
43 ::Random& random,
44 int chunkX,
45 int chunkZ,
46 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
47 );
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor(
54 ::Dimension& generator,
55 ::BiomeSource const& biomeSource,
56 ::Random& random,
57 int chunkX,
58 int chunkZ,
59 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
60 );
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCFOLD bool $isValid() const;
67
68 MCAPI ::std::string_view $getStructureName() const;
69
70
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCNAPI static void** $vftable();
77 // NOLINTEND
78};
Definition BiomeSource.h:20
Definition Dimension.h:85
Definition IPreliminarySurfaceProvider.h:8
Definition Random.h:10
Definition StructureStart.h:15
static MCAPI void ** $vftable()