LeviLamina
Loading...
Searching...
No Matches
CameraAimAssistCommand.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 CameraAimAssistCommand : public ::Command {
16public:
17 // CameraAimAssistCommand inner types define
18 enum class Action : uchar {
19 Set = 0,
20 Clear = 1,
21 };
22
23 enum class TargetMode : uchar {
24 Distance = 0,
25 Angle = 1,
26 };
27
28public:
29 // member variables
30 // NOLINTBEGIN
39 // NOLINTEND
40
41public:
42 // prevent constructor by default
43 CameraAimAssistCommand& operator=(CameraAimAssistCommand const&);
44 CameraAimAssistCommand(CameraAimAssistCommand const&);
45 CameraAimAssistCommand();
46
47public:
48 // virtual functions
49 // NOLINTBEGIN
50 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
51
52 virtual ~CameraAimAssistCommand() /*override*/ = default;
53 // NOLINTEND
54
55public:
56 // static functions
57 // NOLINTBEGIN
58 MCAPI static void setup(::CommandRegistry& registry);
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
65
66
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
static MCAPI void ** $vftable()
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:47
Definition Command.h:17
Definition Alias.h:14