GCC Code Coverage Report


Directory: ./
File: client/components/audio.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/audio.hpp"
2
3 namespace rtype::client::components {
4 AudioSource::AudioSource(const std::string& soundPath, AudioType type)
5 : soundPath(soundPath), type(type), volume(1.0f), looping(false), playing(false), is3D(false) {}
6 }
7