LeviLamina
Loading...
Searching...
No Matches
WorldBuilderCommand.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;
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 2
21 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
22
23 // vIndex: 0
24 virtual ~WorldBuilderCommand() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // static functions
29 // NOLINTBEGIN
30 MCAPI static void setWorldBuilder(::LayeredAbilities& abilities, bool newValue);
31
32 MCAPI static void setup(::CommandRegistry& registry);
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCAPI static void** $vftable();
51 // NOLINTEND
52};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:44
Definition Command.h:17
Definition LayeredAbilities.h:18
Definition WorldBuilderCommand.h:16