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