GCC Code Coverage Report


Directory: ./
File: common/components/Position.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/Position.hpp"
2
3 namespace rtype::common::components {
4 Position::Position(float x, float y, float rotation)
5 : x(x), y(y), rotation(rotation) {}
6 }
7