LeviLamina
Loading...
Searching...
No Matches
DedicatedWSServerCommand.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 DedicatedWSServerCommand : public ::Command {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 DedicatedWSServerCommand& operator=(DedicatedWSServerCommand const&);
26 DedicatedWSServerCommand(DedicatedWSServerCommand const&);
27 DedicatedWSServerCommand();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
33
34 virtual ~DedicatedWSServerCommand() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // static functions
39 // NOLINTBEGIN
40 MCAPI static void setup(::CommandRegistry& registry, ::IMinecraftApp& app);
41 // NOLINTEND
42
43public:
44 // static variables
45 // NOLINTBEGIN
46 MCAPI static ::IMinecraftApp*& mApp();
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
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