LeviLamina
Loading...
Searching...
No Matches
TitleRawCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/packet/SetTitlePacket.h"
7#include "mc/server/commands/CommandSelectorResults.h"
8#include "mc/server/commands/standard/MessagingCommand.h"
9
10// auto generated forward declare list
11// clang-format off
12class CommandOrigin;
13class CommandOutput;
14class CommandRegistry;
15class Player;
16// clang-format on
17
19public:
20 // TitleRawCommand inner types define
21 enum class Mode : int {
22 Clear = 0,
23 Reset = 1,
24 Title = 2,
25 Subtitle = 3,
26 ActionBar = 4,
27 Times = 5,
28 Undefined = 6,
29 };
30
31public:
32 // member variables
33 // NOLINTBEGIN
40 // NOLINTEND
41
42public:
43 // prevent constructor by default
44 TitleRawCommand& operator=(TitleRawCommand const&);
47
48public:
49 // virtual functions
50 // NOLINTBEGIN
51 // vIndex: 2
52 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
53
54 // vIndex: 0
55 virtual ~TitleRawCommand() /*override*/ = default;
56 // NOLINTEND
57
58public:
59 // member functions
60 // NOLINTBEGIN
61 MCAPI bool _sendTitlePacketTextObject(
62 ::SetTitlePacket::TitleType type,
63 ::CommandOrigin const& origin,
64 ::CommandOutput& output,
66 ) const;
67 // NOLINTEND
68
69public:
70 // static functions
71 // NOLINTBEGIN
72 MCAPI static void setup(::CommandRegistry& registry);
73 // NOLINTEND
74
75public:
76 // destructor thunk
77 // NOLINTBEGIN
78
79 // NOLINTEND
80
81public:
82 // virtual function thunks
83 // NOLINTBEGIN
84 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
85 // NOLINTEND
86
87public:
88 // vftables
89 // NOLINTBEGIN
90 MCAPI static void** $vftable();
91 // NOLINTEND
92};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:44
Definition CommandSelectorResults.h:6
Definition MessagingCommand.h:16
Definition Player.h:119
Definition TitleRawCommand.h:18
Definition Alias.h:14