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
25MCNAPI ::TickingSystemWithInfo createRideableComponentRemovalSystem();
26
27MCNAPI void removeAllPassengers(
28 ::VehicleComponent const& vehicleComponent,
29 bool actorIsBeingDestroyed,
30 bool exitFromPassenger,
31 ::EntityModifier<
32 ::ActorIsBeingDestroyedFlagComponent,
33 ::ExitFromPassengerFlagComponent,
34 ::StopRidingRequestComponent>& modifier
35);
36
37MCNAPI void removeAllPassengersRequestProcess(
38 ::ViewT<
39 ::StrictEntityContext,
40 ::Include<::RemoveAllPassengersRequestComponent>,
41 ::VehicleComponent const,
42 ::Optional<::ActorIsBeingDestroyedFlagComponent>> view,
43 ::EntityModifier<
44 ::ActorIsBeingDestroyedFlagComponent,
45 ::ExitFromPassengerFlagComponent,
46 ::StopRidingRequestComponent> mainModifier,
47 ::EntityModifier<::RemoveAllPassengersRequestComponent> requestModifier
48);
49
50MCNAPI void tickRemoveAllPassengers(
51 ::StrictEntityContext&,
52 ::VehicleComponent const& vehicleComponent,
53 ::Optional<::ActorIsBeingDestroyedFlagComponent> actorIsBeingDestroyed,
54 ::EntityModifier<
55 ::ActorIsBeingDestroyedFlagComponent,
56 ::ExitFromPassengerFlagComponent,
57 ::StopRidingRequestComponent> modifier
58);
59// NOLINTEND
60
61} // namespace RemoveAllPassengersSystem
Definition StrictEntityContext.h:8
Definition ActorIsBeingDestroyedFlagComponent.h:5
Definition ExitFromPassengerFlagComponent.h:5
Definition RemoveAllPassengersRequestComponent.h:5
Definition StopRidingRequestComponent.h:5
Definition TickingSystemWithInfo.h:13
Definition VehicleComponent.h:10