LeviLamina
Loading...
Searching...
No Matches
Experiments.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4#include "mc/world/level/storage/AllExperiments.h"
5
6// auto generated inclusion list
7#include "mc/world/level/storage/ExperimentStorage.h"
8
9// auto generated forward declare list
10// clang-format off
11class CompoundTag;
12// clang-format on
13
14class Experiments : public ::ExperimentStorage {
15public:
16 LLNDAPI bool isExperimentEnabled(AllExperiments experiment) const;
17
18public:
19 // member functions
20 // NOLINTBEGIN
21#ifdef LL_PLAT_C
22 MCAPI bool _shouldShowAsExperimentalLevel(
23 ::std::vector<bool> const& experimentData,
24 ::gsl::span<::std::string const> toggleNames
25 ) const;
26#endif
27
28 MCAPI ::std::string getExperimentsActiveAsJSONList() const;
29
30 MCAPI void getTagData(::CompoundTag const& tag);
31
32 MCAPI void setTagData(::CompoundTag& tag) const;
33
34#ifdef LL_PLAT_C
35 MCAPI bool shouldShowAsExperimentalLevel() const;
36#endif
37 // NOLINTEND
38};
Definition CompoundTag.h:18
Definition Experiments.h:14