LeviLamina
Loading...
Searching...
No Matches
GameEventMovementTrackingSystem.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
11class Actor;
13class EntityRegistry;
16// clang-format on
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 2
23 virtual void tick(::EntityRegistry& registry) /*override*/;
24
25 // vIndex: 0
26 virtual ~GameEventMovementTrackingSystem() /*override*/ = default;
27 // NOLINTEND
28
29public:
30 // static functions
31 // NOLINTBEGIN
33 ::ActorOwnerComponent& actorOwnerComponent,
34 ::GameEventMovementTrackingComponent& gameEventMovementTrackingComponent,
36 );
37
38 MCNAPI static void _trackMovement(
39 ::Actor& actor,
42 );
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCNAPI void $tick(::EntityRegistry& registry);
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
Definition ActorOwnerComponent.h:10
Definition Actor.h:103
Definition EntityRegistry.h:11
Definition GameEventMovementTrackingComponent.h:15
Definition GameEventMovementTrackingSystem.h:18
static MCAPI void _tickGameEventMovementTrackingComponent(::ActorOwnerComponent &actorOwnerComponent, ::GameEventMovementTrackingComponent &gameEventMovementTrackingComponent, ::Optional<::RailMovementComponent const > railMovementComponent)
MCAPI void $tick(::EntityRegistry &registry)
static MCAPI void _trackMovement(::Actor &actor, ::GameEventMovementTrackingComponent &component, ::Optional<::RailMovementComponent const > railMovementComponent)
static MCAPI void ** $vftable()
Definition ITickingSystem.h:15
Definition Optional.h:8
Definition RailMovementComponent.h:5