LeviLamina
Loading...
Searching...
No Matches
RemoveAllPassengersSystem.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/ViewT.h"
8#include "mc/deps/ecs/strict/EntityModifier.h"
9#include "mc/deps/ecs/strict/Include.h"
10
11// auto generated forward declare list
12// clang-format off
19struct VehicleComponent;
20// clang-format on
21
22namespace RemoveAllPassengersSystem {
23// functions
24// NOLINTBEGIN
25MCAPI ::TickingSystemWithInfo createRequestProcessingSystem();
26
27MCAPI ::TickingSystemWithInfo createRideableComponentRemovalSystem();
28
29MCAPI void removeAllPassengers(
30 ::VehicleComponent const& vehicleComponent,
31 bool actorIsBeingDestroyed,
32 bool exitFromPassenger,
33 ::EntityModifier<
34 ::ActorIsBeingDestroyedFlagComponent,
35 ::ExitFromPassengerFlagComponent,
36 ::StopRidingRequestComponent>& modifier
37);
38
39MCAPI void removeAllPassengersRequestProcess(
40 ::ViewT<
41 ::StrictEntityContext,
42 ::Include<::RemoveAllPassengersRequestComponent>,
43 ::VehicleComponent const,
44 ::Optional<::ActorIsBeingDestroyedFlagComponent>> view,
45 ::EntityModifier<
46 ::ActorIsBeingDestroyedFlagComponent,
47 ::ExitFromPassengerFlagComponent,
48 ::StopRidingRequestComponent> mainModifier,
49 ::EntityModifier<::RemoveAllPassengersRequestComponent> requestModifier
50);
51
52MCAPI void tickRemoveAllPassengers(
53 ::StrictEntityContext& vehicleComponent,
54 ::VehicleComponent const& actorIsBeingDestroyed,
55 ::Optional<::ActorIsBeingDestroyedFlagComponent> modifier,
56 ::EntityModifier<
57 ::ActorIsBeingDestroyedFlagComponent,
58 ::ExitFromPassengerFlagComponent,
59 ::StopRidingRequestComponent>
60);
61// NOLINTEND
62
63} // namespace RemoveAllPassengersSystem
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