| 4 | #include "Settings.h" |
| 5 | |
| 6 | Sound::Sound(const std::string & path) : mSampleData(NULL), mSamplePos(0), mSampleLength(0), playing(false) |
| 7 | { |
| 8 | loadFile(path); |
| 9 | } |
| 10 | |
| 11 | Sound::~Sound() |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected