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& operator=(CameraAimAssistActorPriorityServerComponent const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI CameraAimAssistActorPriorityServerComponent();
29
30 MCAPI CameraAimAssistActorPriorityServerComponent(::CameraAimAssistActorPriorityServerComponent const&);
31
32 MCAPI ::CameraAimAssistActorPriorityServerComponent& operator=(::CameraAimAssistActorPriorityServerComponent&&);
33
34 MCAPI void setExclusion(::HashedString const& presetId, ::HashedString const& actorId, bool isExcluded);
35
36 MCAPI void setPriority(
37 ::HashedString const& presetId,
38 ::HashedString const& categoryId,
39 ::HashedString const& actorId,
40 int newPriority
41 );
42
43 MCAPI ~CameraAimAssistActorPriorityServerComponent();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor();
50
51 MCAPI void* $ctor(::CameraAimAssistActorPriorityServerComponent const&);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCAPI void $dtor();
58 // NOLINTEND
59};
Definition HashedString.h:5