LeviLamina
Loading...
Searching...
No Matches
WeatherCommand.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 WeatherCommand : public ::Command {
16public:
17 // WeatherCommand inner types define
18 enum class WeatherType : uint {};
19
20 enum class WeatherRequest : uint {};
21
22public:
23 // member variables
24 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 WeatherCommand& operator=(WeatherCommand const&);
35
36public:
37 // virtual functions
38 // NOLINTBEGIN
39 // vIndex: 2
40 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
41
42 // vIndex: 0
43 virtual ~WeatherCommand() /*override*/ = default;
44 // NOLINTEND
45
46public:
47 // static functions
48 // NOLINTBEGIN
49 MCAPI static void setup(::CommandRegistry& registry);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition CommandOrigin.h:30
Definition CommandOutput.h:17
Definition CommandRegistry.h:34
Definition Command.h:17
Definition WeatherCommand.h:15
static MCAPI void ** $vftable()
Definition _HeaderOutputPredefine.h:273