LeviLamina
Loading...
Searching...
No Matches
PriorityPreset.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class HashedString;
8// clang-format on
9
10namespace CameraAimAssist {
11
13public:
14 // member variables
15 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 PriorityPreset& operator=(PriorityPreset const&);
29
30public:
31 // member functions
32 // NOLINTBEGIN
34 ::HashedString const& id,
35 ::std::unordered_set<::HashedString> const& exclusionList,
36 ::std::unordered_set<::HashedString> const& liquidTargetingItemsList,
37 ::std::unordered_map<::HashedString, ::HashedString> const& itemCategoryIdTable,
38 ::HashedString const& handCategory,
39 ::HashedString const& defaultCategory
40 );
41
43 // NOLINTEND
44
45public:
46 // static variables
47 // NOLINTBEGIN
48 MCNAPI static ::CameraAimAssist::PriorityPreset const& EMPTY_PRESET();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCNAPI void* $ctor(
55 ::HashedString const& id,
56 ::std::unordered_set<::HashedString> const& exclusionList,
57 ::std::unordered_set<::HashedString> const& liquidTargetingItemsList,
58 ::std::unordered_map<::HashedString, ::HashedString> const& itemCategoryIdTable,
59 ::HashedString const& handCategory,
60 ::HashedString const& defaultCategory
61 );
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67 MCNAPI void $dtor();
68 // NOLINTEND
69};
70
71} // namespace CameraAimAssist
Definition PriorityPreset.h:12
MCAPI void * $ctor(::HashedString const &id, ::std::unordered_set<::HashedString > 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, ::std::unordered_set<::HashedString > 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 Alias.h:14