LeviLamina
Loading...
Searching...
No Matches
ExecuteCommandHelpers.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Actor;
8class Command;
9class CommandOrigin;
10class CommandOutput;
11// clang-format on
12
13namespace ExecuteCommandHelpers {
14// functions
15// NOLINTBEGIN
16MCAPI void handleResult(::Command const& command, ::std::vector<::Actor const*> const& failed, ::CommandOutput& output);
17
18MCAPI void runCommand(
19 ::Command const& command,
20 ::CommandOrigin const& commandOrigin,
21 ::Actor const* entity,
22 ::std::vector<::Actor const*>& failed,
23 ::CommandOutput& output
24);
25// NOLINTEND
26
27} // namespace ExecuteCommandHelpers
Definition Actor.h:104
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition Command.h:17