LeviLamina
Loading...
Searching...
No Matches
CameraAimAssistRegistryComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7
8// auto generated forward declare list
9// clang-format off
11namespace CameraAimAssist { class PriorityCategory; }
12namespace CameraAimAssist { class PriorityPreset; }
13// clang-format on
14
15class CameraAimAssistRegistryComponent {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::CameraAimAssist::PriorityPreset>> mPriorityPresets;
20 ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, ::CameraAimAssist::PriorityCategory>>
21 mPriorityCategoryList;
22 // NOLINTEND
23
24#ifdef LL_PLAT_S
25public:
26 // prevent constructor by default
27 CameraAimAssistRegistryComponent& operator=(CameraAimAssistRegistryComponent const&);
28 CameraAimAssistRegistryComponent(CameraAimAssistRegistryComponent const&);
29 CameraAimAssistRegistryComponent();
30
31#else // LL_PLAT_C
32public:
33 // prevent constructor by default
34 CameraAimAssistRegistryComponent(CameraAimAssistRegistryComponent const&);
35 CameraAimAssistRegistryComponent();
36
37#endif
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCFOLD ::std::unordered_map<::HashedString, ::CameraAimAssist::PriorityCategory> const&
42 getPriorityCategories() const;
43
44#ifdef LL_PLAT_C
45 MCAPI ::CameraAimAssist::PriorityCategory const& getPriorityCategory(::HashedString const& id) const;
46#endif
47
48 MCAPI ::CameraAimAssist::PriorityPreset const& getPriorityPreset(::HashedString const& id) const;
49
50#ifdef LL_PLAT_C
51 MCAPI bool hasPriorityPreset(::HashedString const& id) const;
52
53 MCAPI void loadRegistryFromPacket(::CameraAimAssistPresetsPacket const& aimAssistPresetsPacket);
54#endif
55
56 MCAPI ::CameraAimAssistRegistryComponent& operator=(::CameraAimAssistRegistryComponent&&);
57
58#ifdef LL_PLAT_C
59 MCAPI ::CameraAimAssistRegistryComponent& operator=(::CameraAimAssistRegistryComponent const&);
60#endif
61
62 MCAPI void updateRegistryFromPacket(::CameraAimAssistPresetsPacket const& aimAssistPresetsPacket);
63
64 MCAPI ~CameraAimAssistRegistryComponent();
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72};
Definition CameraAimAssistPresetsPacket.h:19
Definition PriorityCategory.h:14
Definition PriorityPreset.h:13
Definition HashedString.h:5