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/codebuilder/EncryptionCipherMode.h"
7#include "mc/server/commands/Command.h"
8
9// auto generated forward declare list
10// clang-format off
11class CommandOrigin;
12class CommandOutput;
13class CommandRegistry;
14class IMinecraftApp;
15// clang-format on
16
17class EnableEncryptionCommand : public ::Command {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::std::string> mPublicKey;
22 ::ll::TypedStorage<8, 32, ::std::string> mSalt;
23 ::ll::TypedStorage<1, 1, ::CodeBuilder::EncryptionCipherMode> mCipherMode;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
30 // NOLINTEND
31
32public:
33 // static functions
34 // NOLINTBEGIN
35 MCAPI static void setup(::CommandRegistry& registry, ::IMinecraftApp& app);
36 // NOLINTEND
37
38public:
39 // static variables
40 // NOLINTBEGIN
41 MCAPI static ::IMinecraftApp*& mApp();
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
48
49
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
Definition CommandOrigin.h:32
Definition CommandOutput.h:20
Definition CommandRegistry.h:51
Definition EnableEncryptionCommand.h:17
static MCAPI void ** $vftable()
Definition IMinecraftApp.h:19