GCC Code Coverage Report


Directory: ./
File: common/components/Velocity.cpp
Date: 2025-09-29 13:19:55
Exec Total Coverage
Lines: 0 2 0.0%
Functions: 0 1 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 #include "common/components/Velocity.hpp"
2
3 namespace rtype::common::components {
4 Velocity::Velocity(float vx, float vy, float maxSpeed)
5 : vx(vx), vy(vy), maxSpeed(maxSpeed) {}
6 }
7