LeviLamina
Loading...
Searching...
No Matches
RequestVisitor.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/components/AttributeRequestComponent.h"
7
8// auto generated forward declare list
9// clang-format off
11// clang-format on
12
13namespace UpdateAttributesSystemImpl {
14
15struct RequestVisitor {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::AttributesComponent&> mAttributes;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 RequestVisitor& operator=(RequestVisitor const&);
25 RequestVisitor(RequestVisitor const&);
26 RequestVisitor();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI void operator()(::AttributeRequestComponent::AddBuffModifier const& request) const;
32 // NOLINTEND
33};
34
35} // namespace UpdateAttributesSystemImpl
Definition AttributeRequestComponent.h:15
Definition AttributesComponent.h:8