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