LeviLamina
Loading...
Searching...
No Matches
ClientCameraAimAssistPacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/packet/ClientCameraAimAssistPacketAction.h"
7
8struct ClientCameraAimAssistPacketPayload {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 32, ::std::string> mCameraPresetId;
13 ::ll::TypedStorage<1, 1, ::ClientCameraAimAssistPacketAction> mAction;
14 ::ll::TypedStorage<1, 1, bool> mAllowAimAssist;
15 // NOLINTEND
16
17#ifdef LL_PLAT_S
18#else // LL_PLAT_C
19public:
20 // prevent constructor by default
21 ClientCameraAimAssistPacketPayload();
22
23#endif
24public:
25 // member functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_C
28 MCAPI ClientCameraAimAssistPacketPayload(::ClientCameraAimAssistPacketAction action, bool allowAimAssist);
29
30 MCAPI ClientCameraAimAssistPacketPayload(::std::string const& cameraPresetId, bool allowAimAssist);
31#endif
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37#ifdef LL_PLAT_C
38 MCAPI void* $ctor(::ClientCameraAimAssistPacketAction action, bool allowAimAssist);
39
40 MCAPI void* $ctor(::std::string const& cameraPresetId, bool allowAimAssist);
41#endif
42 // NOLINTEND
43};