LeviLamina
Loading...
Searching...
No Matches
TryExitVehicleSystem.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/Exclude.h"
10#include "mc/deps/ecs/strict/Include.h"
11
12// auto generated forward declare list
13// clang-format off
22struct MobFlagComponent;
28struct VehicleComponent;
29// clang-format on
30
31namespace TryExitVehicleSystem {
32// functions
33// NOLINTBEGIN
34MCAPI void _tick(
35 ::ViewT<
36 ::StrictEntityContext,
37 ::Include<::ActorMovementTickNeededComponent, ::LocalPlayerComponent, ::MobIsJumpingFlagComponent>,
38 ::PassengerComponent const> view,
39 ::ViewT<
40 ::StrictEntityContext,
41 ::Include<::InterpolateMovementNeededComponent>,
42 ::Exclude<::BoatFlagComponent>,
43 ::Optional<::MobFlagComponent const>,
44 ::MovementAttributesComponent const,
45 ::VehicleComponent const,
46 ::ActorDataFlagComponent const,
47 ::ActorDataControllingSeatIndexComponent const> vehiclesPlayerIsJumping,
48 ::EntityModifier<::StopRidingRequestComponent, ::ExitFromPassengerFlagComponent> modifier
49);
50
51MCAPI void _tickTryExitVehicle(
52 ::StrictEntityContext const& entity,
53 ::PassengerComponent const& passengerComponent,
54 ::ViewT<
55 ::StrictEntityContext,
56 ::Include<::InterpolateMovementNeededComponent>,
57 ::Exclude<::BoatFlagComponent>,
58 ::Optional<::MobFlagComponent const>,
59 ::MovementAttributesComponent const,
60 ::VehicleComponent const,
61 ::ActorDataFlagComponent const,
62 ::ActorDataControllingSeatIndexComponent const> vehiclesPlayerIsJumping,
63 ::EntityModifier<::StopRidingRequestComponent, ::ExitFromPassengerFlagComponent>& modifier
64);
65
66MCAPI ::TickingSystemWithInfo createSystem();
67// NOLINTEND
68
69} // namespace TryExitVehicleSystem
Definition StrictEntityContext.h:14
Definition ActorDataControllingSeatIndexComponent.h:8
Definition ActorDataFlagComponent.h:10
Definition ActorMovementTickNeededComponent.h:5
Definition BoatFlagComponent.h:5
Definition ExitFromPassengerFlagComponent.h:5
Definition InterpolateMovementNeededComponent.h:5
Definition LocalPlayerComponent.h:5
Definition MobFlagComponent.h:5
Definition MobIsJumpingFlagComponent.h:5
Definition MovementAttributesComponent.h:5
Definition PassengerComponent.h:8
Definition StopRidingRequestComponent.h:5
Definition TickingSystemWithInfo.h:13
Definition VehicleComponent.h:10