3#include "mc/_HeaderOutputPredefine.h"
6#include "mc/deps/ecs/Optional.h"
7#include "mc/deps/ecs/ViewT.h"
8#include "mc/deps/ecs/strict/EntityModifier.h"
9#include "mc/deps/ecs/strict/Include.h"
22namespace RemoveAllPassengersSystem {
25MCAPI ::TickingSystemWithInfo createRequestProcessingSystem();
27MCAPI ::TickingSystemWithInfo createRideableComponentRemovalSystem();
29MCAPI
void removeAllPassengers(
30 ::VehicleComponent
const& vehicleComponent,
31 bool actorIsBeingDestroyed,
32 bool exitFromPassenger,
34 ::ActorIsBeingDestroyedFlagComponent,
35 ::ExitFromPassengerFlagComponent,
36 ::StopRidingRequestComponent>& modifier
39MCAPI
void removeAllPassengersRequestProcess(
41 ::StrictEntityContext,
42 ::Include<::RemoveAllPassengersRequestComponent>,
43 ::VehicleComponent
const,
44 ::Optional<::ActorIsBeingDestroyedFlagComponent>> view,
46 ::ActorIsBeingDestroyedFlagComponent,
47 ::ExitFromPassengerFlagComponent,
48 ::StopRidingRequestComponent> mainModifier,
49 ::EntityModifier<::RemoveAllPassengersRequestComponent> requestModifier
52MCAPI
void tickRemoveAllPassengers(
53 ::StrictEntityContext& vehicleComponent,
54 ::VehicleComponent
const& actorIsBeingDestroyed,
55 ::Optional<::ActorIsBeingDestroyedFlagComponent> modifier,
57 ::ActorIsBeingDestroyedFlagComponent,
58 ::ExitFromPassengerFlagComponent,
59 ::StopRidingRequestComponent>
Definition StrictEntityContext.h:14
Definition ActorIsBeingDestroyedFlagComponent.h:5
Definition ExitFromPassengerFlagComponent.h:5
Definition RemoveAllPassengersRequestComponent.h:5
Definition StopRidingRequestComponent.h:5
Definition TickingSystemWithInfo.h:13
Definition VehicleComponent.h:10