LeviLamina
Loading...
Searching...
No Matches
ExplorationMapData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/MapType.h"
7#include "mc/world/level/saveddata/maps/MapDecoration.h"
8
9// auto generated forward declare list
10// clang-format off
11class HashedString;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ExplorationMapData& operator=(ExplorationMapData const&);
31
32public:
33 // member functions
34 // NOLINTBEGIN
36 ::MapType mapType,
37 ::MapDecoration::Type markerType,
38 ::std::string const& featureName,
39 ::HashedString structureType,
40 bool featureMustBeInNewChunks,
41 ::std::optional<::HashedString> const& biomeTag
42 );
43
44 MCAPI ~ExplorationMapData();
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(
51 ::MapType mapType,
52 ::MapDecoration::Type markerType,
53 ::std::string const& featureName,
54 ::HashedString structureType,
55 bool featureMustBeInNewChunks,
56 ::std::optional<::HashedString> const& biomeTag
57 );
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCAPI void $dtor();
64 // NOLINTEND
65};
Definition HashedString.h:5
Definition ExplorationMapData.h:14
Definition Alias.h:14