LeviLamina
Loading...
Searching...
No Matches
FogCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/Command.h"
7#include "mc/server/commands/CommandSelector.h"
8
9// auto generated forward declare list
10// clang-format off
11class CommandOrigin;
12class CommandOutput;
13class CommandRegistry;
14class Player;
15// clang-format on
16
17class FogCommand : public ::Command {
18public:
19 // FogCommand inner types define
20 enum class Mode : int {
21 Push = 0,
22 Pop = 1,
23 Remove = 2,
24 };
25
26public:
27 // member variables
28 // NOLINTBEGIN
29 ::ll::TypedStorage<8, 200, ::CommandSelector<::Player>> mTargets;
30 ::ll::TypedStorage<4, 4, ::FogCommand::Mode> mMode;
31 ::ll::TypedStorage<8, 32, ::std::string> mFogId;
32 ::ll::TypedStorage<8, 32, ::std::string> mUserProvidedId;
33 // NOLINTEND
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
39 // NOLINTEND
40
41public:
42 // static functions
43 // NOLINTBEGIN
44 MCAPI static void setup(::CommandRegistry& registry);
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
61
62// clang-format off
63template <>
64MCAPI ::ll::type_id_ref Bedrock::typeid_storage_impl<class CommandRegistry, ::FogCommand::Mode>();
65// clang-format on
Definition CommandOrigin.h:32
Definition CommandOutput.h:20
Definition CommandRegistry.h:51
Definition FogCommand.h:17
static MCAPI void ** $vftable()
Definition Player.h:137