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
38 // NOLINTEND
39
40public:
41 // prevent constructor by default
45
46public:
47 // virtual functions
48 // NOLINTBEGIN
49 // vIndex: 2
50 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
51
52 // vIndex: 0
53 virtual ~CameraAimAssistCommand() /*override*/ = default;
54 // NOLINTEND
55
56public:
57 // static functions
58 // NOLINTBEGIN
59 MCAPI static void setup(::CommandRegistry& registry);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCAPI static void** $vftable();
78 // NOLINTEND
79};
Definition CameraAimAssistCommand.h:15
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:44
Definition Command.h:17
Definition Alias.h:14