GCC Code Coverage Report


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

Line Branch Exec Source
1 #include "client/components/render.hpp"
2
3 namespace rtype::client::components {
4 Renderable::Renderable(const std::string& texturePath, float width, float height, RenderLayer layer)
5 : texturePath(texturePath), width(width), height(height), layer(layer), visible(true), alpha(1.0f) {}
6 }
7