AFV initial commit

This commit is contained in:
Roland Rossgotterer
2019-09-14 21:18:26 +02:00
committed by Mat Sutcliffe
parent 7030302e73
commit b5a2f2ad13
100 changed files with 6821 additions and 25 deletions

View File

@@ -0,0 +1,24 @@
#ifndef SAMPLES_H
#define SAMPLES_H
#include "blacksound/blacksoundexport.h"
#include "resourcesound.h"
class BLACKSOUND_EXPORT Samples
{
public:
static Samples &instance();
ResourceSound crackle() const;
ResourceSound click() const;
ResourceSound whiteNoise() const;
private:
Samples();
ResourceSound m_crackle;
ResourceSound m_click;
ResourceSound m_whiteNoise;
};
#endif // SAMPLES_H