Air-Trap 1.0.0
A multiplayer R-Type clone game engine built with C++23 and ECS architecture
Loading...
Searching...
No Matches
MovementSpeed.hpp
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2025
3** Air-Trap
4** File description:
5** MovementSpeed
6*/
7
8#pragma once
9
10namespace rtp::ecs::components {
16 float baseSpeed{200.0f};
17 float multiplier{1.0f};
18 float boostRemaining{0.0f};
19};
20} // namespace rtp::ecs::components
File : Ammo.hpp License: MIT Author : Elias Josué HAJJAR LLAUQUEN elias-josue.hajjar-llauquen@epitech...
Definition Ammo.hpp:13
Component representing movement speed with temporary boosts.
float baseSpeed
Base movement speed.
float multiplier
Active speed multiplier.
float boostRemaining
Remaining boost duration in seconds.