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