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/deps/core/string/HashedString.h"
7#include "mc/world/item/MapType.h"
8#include "mc/world/level/saveddata/maps/MapDecoration.h"
9
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<4, 4, ::MapType> mMapType;
15 ::ll::TypedStorage<1, 1, ::MapDecoration::Type> mMarkerType;
16 ::ll::TypedStorage<8, 32, ::std::string> mFeatureName;
17 ::ll::TypedStorage<8, 48, ::HashedString> mStructureType;
18 ::ll::TypedStorage<1, 1, bool> mFeatureMustBeInNewChunks;
19 ::ll::TypedStorage<8, 56, ::std::optional<::HashedString>> mBiomeTag;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
25
26public:
27 // member functions
28 // NOLINTBEGIN
30 ::MapType mapType,
31 ::MapDecoration::Type markerType,
32 ::std::string const& featureName,
33 ::HashedString structureType,
34 bool featureMustBeInNewChunks,
35 ::std::optional<::HashedString> const& biomeTag
36 );
37
38 MCAPI ~ExplorationMapData();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(
45 ::MapType mapType,
46 ::MapDecoration::Type markerType,
47 ::std::string const& featureName,
48 ::HashedString structureType,
49 bool featureMustBeInNewChunks,
50 ::std::optional<::HashedString> const& biomeTag
51 );
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCAPI void $dtor();
58 // NOLINTEND
59};
Definition HashedString.h:5
Definition ExplorationMapData.h:10