LeviLamina
Loading...
Searching...
No Matches
EnableEncryptionCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/Command.h"
7
8// auto generated forward declare list
9// clang-format off
10class CommandOrigin;
11class CommandOutput;
12class CommandRegistry;
13class IMinecraftApp;
14// clang-format on
15
16class EnableEncryptionCommand : public ::Command {
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 EnableEncryptionCommand& operator=(EnableEncryptionCommand const&);
28 EnableEncryptionCommand(EnableEncryptionCommand const&);
29 EnableEncryptionCommand();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
35
36 virtual ~EnableEncryptionCommand() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static void setup(::CommandRegistry& registry, ::IMinecraftApp& app);
43 // NOLINTEND
44
45public:
46 // static variables
47 // NOLINTBEGIN
48 MCAPI static ::IMinecraftApp*& mApp();
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:47
Definition Command.h:17
static MCAPI void ** $vftable()
Definition IMinecraftApp.h:19
Definition Alias.h:14