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
16MCNAPI void
17handleResult(::Command const& command, ::std::vector<::Actor const*> const& failed, ::CommandOutput& output);
18
19MCNAPI void runCommand(
20 ::Command const& command,
21 ::CommandOrigin const& commandOrigin,
22 ::Actor const* entity,
23 ::std::vector<::Actor const*>& failed,
24 ::CommandOutput& output
25);
26// NOLINTEND
27
28} // namespace ExecuteCommandHelpers
Definition Actor.h:103
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition Command.h:17