LeviLamina
Loading...
Searching...
No Matches
ExplorationMapUtils.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Actor;
8class ItemStackBase;
9class Level;
11// clang-format on
12
13namespace ExplorationMapUtils {
14// functions
15// NOLINTBEGIN
16MCAPI void makeNewExplorationMapFromFeatureName(
17 ::ItemStackBase& item,
18 ::Level& level,
19 ::Actor* owner,
20 ::std::string const& featureName,
21 bool markForRegeneration
22);
23
24MCAPI void makeNewExplorationMapFromMapData(
25 ::ItemStackBase& item,
26 ::Level& level,
27 ::Actor* owner,
28 ::ExplorationMapData const& explorationMapData,
29 bool markForRegeneration
30);
31// NOLINTEND
32
33} // namespace ExplorationMapUtils
Definition Actor.h:104
Definition ItemStackBase.h:35
Definition Level.h:234
Definition ExplorationMapData.h:14