blob: 35bccdbacbe5369ac8958399d4ec7f72221495f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma once
#include <soloud/soloud.h>
#include <soloud/soloud_wav.h>
#include "../Resource.h"
namespace crepe {
class SoundContext;
/**
* \brief Sound resource facade
*
* This class is a wrapper around a \c SoLoud::Wav instance, which holds a
* single sample. It is part of the sound facade.
*/
class Sound : public Resource {
public:
Sound(const Asset & src);
~Sound(); // dbg_trace
struct Handle {
SoLoud::handle handle;
};
private:
SoLoud::Wav sample;
friend class SoundContext;
};
} // namespace crepe
|