LeviLamina
Loading...
Searching...
No Matches
RequestActionLoader.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/chunk/IRequestAction.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
12class IRequestAction;
14// clang-format on
15
17public:
18 // static functions
19 // NOLINTBEGIN
20 MCAPI static bool isValidTag(::IRequestAction::RequestActionType actionType, ::CompoundTag const& tag);
21
22 MCAPI static ::std::unique_ptr<::IRequestAction> load(
23 ::IRequestAction::RequestActionType actionType,
24 ::CompoundTag const& tag,
26 ::std::string const& dimensionPrefix
27 );
28
29 MCAPI static ::std::unique_ptr<::IRequestAction> load(
30 ::IRequestAction::RequestActionType actionType,
31 ::CompoundTag const& tag,
33 ::std::string const& dimensionPrefix,
34 ::JigsawStructureElementRegistry const& elementReg
35 );
36 // NOLINTEND
37};
Definition CompoundTag.h:23
Definition ICommandOriginLoader.h:11
Definition IRequestAction.h:12
Definition JigsawStructureElementRegistry.h:10
Definition RequestActionLoader.h:16