LeviLamina
Loading...
Searching...
No Matches
PlayerMovement.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class EntityContext;
8class Vec2;
11struct MoveInputState;
12// clang-format on
13
14namespace PlayerMovement {
15// functions
16// NOLINTBEGIN
17MCAPI void applyInputLocks(::ClientInputLockComponent const& lockComponent, ::MoveInputState& inputState);
18
19MCAPI ::Vec2 calculateButtonMoveVector(::MoveInputState const& inputState);
20
21MCAPI void clearInputState(::MoveInputComponent& input);
22
23MCAPI void initializePlayer(::EntityContext& provider);
24// NOLINTEND
25
26} // namespace PlayerMovement
Definition EntityContext.h:16
Definition Vec2.h:5
Definition ClientInputLockComponent.h:10
Definition MoveInputComponent.h:11
Definition MoveInputState.h:9