LeviLamina
Loading...
Searching...
No Matches
TellCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/standard/MessagingCommand.h"
7
8// auto generated forward declare list
9// clang-format off
10class CommandOrigin;
11class CommandOutput;
12class CommandRegistry;
13class Level;
14class Player;
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 TellCommand& operator=(TellCommand const&);
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 2
36 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
37
38 // vIndex: 0
39 virtual ~TellCommand() /*override*/ = default;
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCAPI static void _sendMessageToPlayer(
46 ::Player& player,
47 ::std::string const& message,
48 ::std::optional<::std::string> filteredMessage,
49 ::std::string const& sender,
50 ::CommandOriginIdentity const& identity,
51 ::Level& level
52 );
53
54 MCAPI static void setup(::CommandRegistry& registry);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:44
Definition Level.h:234
Definition MessagingCommand.h:16
Definition Player.h:119
Definition TellCommand.h:18
Definition CommandOriginIdentity.h:5
Definition Alias.h:14