LeviLamina
Loading...
Searching...
No Matches
CameraAimAssistActorPriorityServerComponent.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#include "mc/entity/components/camera/aimassist/camera_aim_assist_actor_priority/PriorityKey.h"
8
9struct CameraAimAssistActorPriorityServerComponent {
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<4, 4, int> mTick;
14 ::ll::TypedStorage<1, 1, bool> mDirty;
15 ::ll::TypedStorage<8, 16, ::std::map<::CameraAimAssistActorPriority::PriorityKey, int>> mActorPriorities;
16 ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, int>> mPresetIds;
17 ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, int>> mCategoryIds;
18 ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, int>> mActorIds;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 CameraAimAssistActorPriorityServerComponent(CameraAimAssistActorPriorityServerComponent const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI CameraAimAssistActorPriorityServerComponent();
29
30 MCAPI void clearDirty();
31
32 MCFOLD ::std::map<::CameraAimAssistActorPriority::PriorityKey, int> const& getActorPriorities() const;
33
34 MCAPI int getOrCreateActorIndex(::HashedString const& actorId);
35
36 MCAPI int getOrCreateCategoryIndex(::HashedString const& categoryId);
37
38 MCAPI int getOrCreatePresetIndex(::HashedString const& presetId);
39
40 MCFOLD bool isDirty() const;
41
42 MCAPI ::CameraAimAssistActorPriorityServerComponent& operator=(::CameraAimAssistActorPriorityServerComponent&&);
43
44 MCAPI ::CameraAimAssistActorPriorityServerComponent&
45 operator=(::CameraAimAssistActorPriorityServerComponent const&);
46
47 MCAPI void setExclusion(::HashedString const& presetId, ::HashedString const& actorId, bool isExcluded);
48
49 MCAPI void setPriority(
50 ::HashedString const& presetId,
51 ::HashedString const& categoryId,
52 ::HashedString const& actorId,
53 int newPriority
54 );
55
56 MCAPI ~CameraAimAssistActorPriorityServerComponent();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor();
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCAPI void $dtor();
69 // NOLINTEND
70};
Definition HashedString.h:5