LeviLamina
Loading...
Searching...
No Matches
FireAnimationTrackerSystem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/ecs/Optional.h"
7#include "mc/deps/ecs/systems/ITickingSystem.h"
8
9// auto generated forward declare list
10// clang-format off
12class EntityContext;
13class EntityRegistry;
15struct OnFireComponent;
16// clang-format on
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual void tick(::EntityRegistry& registry) /*override*/;
23
24 virtual ~FireAnimationTrackerSystem() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // static functions
29 // NOLINTBEGIN
30 MCNAPI_C static void _tickFireAnimationTrackerComponent(
31 ::EntityContext& entity,
32 ::ActorOwnerComponent& actorOwnerComponent,
33 ::FireAnimationTrackerComponent& fireAnimationTrackerComponent,
35 );
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCNAPI void $tick(::EntityRegistry& registry);
43#endif
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
Definition ActorOwnerComponent.h:10
Definition EntityContext.h:16
Definition EntityRegistry.h:11
Definition FireAnimationTrackerComponent.h:5
Definition FireAnimationTrackerSystem.h:18
static MCAPI void ** $vftable()
Definition ITickingSystem.h:15
Definition Optional.h:8
Definition OnFireComponent.h:5