LeviLamina
Loading...
Searching...
No Matches
PriorityPreset.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
10namespace CameraAimAssist { struct PriorityPresetExclusionData; }
11// clang-format on
12
13namespace CameraAimAssist {
14
15class PriorityPreset {
16public:
17 // member variables
18 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 PriorityPreset& operator=(PriorityPreset const&);
30 PriorityPreset(PriorityPreset const&);
31 PriorityPreset();
32
33public:
34 // member functions
35 // NOLINTBEGIN
37 ::HashedString const& id,
39 ::std::unordered_set<::HashedString> const& liquidTargetingItemsList,
40 ::std::unordered_map<::HashedString, ::HashedString> const& itemCategoryIdTable,
41 ::HashedString const& handCategory,
42 ::HashedString const& defaultCategory
43 );
44
46 // NOLINTEND
47
48public:
49 // static variables
50 // NOLINTBEGIN
51 MCNAPI static ::CameraAimAssist::PriorityPreset const& EMPTY_PRESET();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCNAPI_C void* $ctor();
58
59 MCNAPI_C void* $ctor(::CameraAimAssist::PriorityPreset const&);
60
61 MCNAPI void* $ctor(
62 ::HashedString const& id,
64 ::std::unordered_set<::HashedString> const& liquidTargetingItemsList,
65 ::std::unordered_map<::HashedString, ::HashedString> const& itemCategoryIdTable,
66 ::HashedString const& handCategory,
67 ::HashedString const& defaultCategory
68 );
69 // NOLINTEND
70
71public:
72 // destructor thunk
73 // NOLINTBEGIN
74 MCNAPI void $dtor();
75 // NOLINTEND
76};
77
78} // namespace CameraAimAssist
Definition PriorityPreset.h:15
MCAPI void * $ctor(::HashedString const &id, ::CameraAimAssist::PriorityPresetExclusionData const &exclusionList, ::std::unordered_set<::HashedString > const &liquidTargetingItemsList, ::std::unordered_map<::HashedString, ::HashedString > const &itemCategoryIdTable, ::HashedString const &handCategory, ::HashedString const &defaultCategory)
static MCAPI ::CameraAimAssist::PriorityPreset const & EMPTY_PRESET()
MCAPI PriorityPreset(::HashedString const &id, ::CameraAimAssist::PriorityPresetExclusionData const &exclusionList, ::std::unordered_set<::HashedString > const &liquidTargetingItemsList, ::std::unordered_map<::HashedString, ::HashedString > const &itemCategoryIdTable, ::HashedString const &handCategory, ::HashedString const &defaultCategory)
Definition HashedString.h:5
Definition PriorityPresetExclusionData.h:16
Definition Alias.h:14