LeviLamina
Loading...
Searching...
No Matches
RuinedPortalStart.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 BiomeRegistry;
11class BiomeSource;
13// clang-format on
14
16public:
17 // prevent constructor by default
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 4
24 virtual ::std::string_view getStructureName() const /*override*/;
25
26 // vIndex: 0
27 virtual ~RuinedPortalStart() /*override*/ = default;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
34 ::BiomeRegistry& registry,
35 ::BiomeSource const& source,
36 int chunkX,
37 int chunkZ,
38 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
39 );
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor(
46 ::BiomeRegistry& registry,
47 ::BiomeSource const& source,
48 int chunkX,
49 int chunkZ,
50 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
51 );
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI ::std::string_view $getStructureName() const;
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition BiomeRegistry.h:31
Definition BiomeSource.h:19
Definition IPreliminarySurfaceProvider.h:8
Definition RuinedPortalStart.h:15
static MCAPI void ** $vftable()
MCAPI void * $ctor(::BiomeRegistry &registry, ::BiomeSource const &source, int chunkX, int chunkZ, ::IPreliminarySurfaceProvider const &preliminarySurfaceLevel)
MCAPI::std::string_view $getStructureName() const
MCAPI RuinedPortalStart(::BiomeRegistry &registry, ::BiomeSource const &source, int chunkX, int chunkZ, ::IPreliminarySurfaceProvider const &preliminarySurfaceLevel)
Definition StructureStart.h:15