LeviLamina
Loading...
Searching...
No Matches
CameraShakeCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/minecraft_camera/CameraShakeAction.h"
7#include "mc/deps/minecraft_camera/CameraShakeType.h"
8#include "mc/server/commands/Command.h"
9#include "mc/server/commands/CommandSelector.h"
10
11// auto generated forward declare list
12// clang-format off
13class CommandOrigin;
14class CommandOutput;
15class CommandRegistry;
16class Player;
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<1, 1, ::CameraShakeAction> mShakeAction;
24 ::ll::TypedStorage<1, 1, ::CameraShakeType> mShakeType;
25 ::ll::TypedStorage<8, 200, ::CommandSelector<::Player>> mTargets;
26 ::ll::TypedStorage<4, 4, float> mIntensity;
27 ::ll::TypedStorage<4, 4, float> mSeconds;
28 ::ll::TypedStorage<1, 1, bool> mTargetsSelectionIsSelector;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
35
36 virtual ~CameraShakeCommand() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI void _executeAdd(::CommandOrigin const& origin, ::CommandOutput& output) const;
43
44 MCAPI void _executeStop(::CommandOrigin const& origin, ::CommandOutput& output) const;
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCAPI static void setup(::CommandRegistry& registry);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition CameraShakeCommand.h:19
static MCAPI void ** $vftable()
Definition CommandOrigin.h:32
Definition CommandOutput.h:20
Definition CommandRegistry.h:50
Definition Command.h:17
Definition Player.h:129