LeviLamina
Loading...
Searching...
No Matches
TitleCommand.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;
13// clang-format on
14
16public:
17 // TitleCommand inner types define
18 enum class Mode : int {
19 Clear = 0,
20 Reset = 1,
21 Title = 2,
22 Subtitle = 3,
23 ActionBar = 4,
24 Times = 5,
25 };
26
27public:
28 // member variables
29 // NOLINTBEGIN
36 // NOLINTEND
37
38public:
39 // prevent constructor by default
40 TitleCommand& operator=(TitleCommand const&);
43
44public:
45 // virtual functions
46 // NOLINTBEGIN
47 // vIndex: 2
48 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
49
50 // vIndex: 0
51 virtual ~TitleCommand() /*override*/ = default;
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCAPI static void setup(::CommandRegistry& registry);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCAPI static void** $vftable();
76 // NOLINTEND
77};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:44
Definition MessagingCommand.h:16
Definition TitleCommand.h:15
Definition Alias.h:14