LeviLamina
Loading...
Searching...
No Matches
ChangeSettingCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/ServerCommand.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 // ChangeSettingCommand inner types define
18 enum class Setting : int {
19 AllowCheats = 0,
20 Difficulty = 1,
21 };
22
23public:
24 // member variables
25 // NOLINTBEGIN
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 // vIndex: 2
42 virtual void execute(::CommandOrigin const&, ::CommandOutput& output) const /*override*/;
43
44 // vIndex: 0
45 virtual ~ChangeSettingCommand() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // static functions
50 // NOLINTBEGIN
51 MCAPI static void setup(::CommandRegistry& registry);
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI void $execute(::CommandOrigin const&, ::CommandOutput& output) const;
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition ChangeSettingCommand.h:15
static MCAPI void ** $vftable()
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:45
Definition ServerCommand.h:22
Definition Alias.h:14