LeviLamina
Loading...
Searching...
No Matches
FogCommandUtil.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CommandOutput;
9class Player;
10// clang-format on
11
12namespace FogCommandUtil {
13// functions
14// NOLINTBEGIN
15MCAPI bool
16pop(::std::string const&,
17 ::std::string const& userProvidedId,
18 ::CommandOutput& output,
19 ::Player& target,
20 ::FogCommandComponent& fogCommandComponent);
21
22MCAPI bool push(
23 ::std::string const& fogId,
24 ::std::string const& userProvidedId,
25 ::CommandOutput& output,
26 ::Player& target,
27 ::FogCommandComponent& fogCommandComponent
28);
29
30MCAPI bool remove(
31 ::std::string const&,
32 ::std::string const& userProvidedId,
33 ::CommandOutput& output,
34 ::Player& target,
35 ::FogCommandComponent& fogCommandComponent
36);
37// NOLINTEND
38
39} // namespace FogCommandUtil
Definition CommandOutput.h:19
Definition FogCommandComponent.h:13
Definition Player.h:119