blob: b1e6463dbbc43ba7553f5c141802124202ea33d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "../api/Asset.h"
#include "../util/dbg.h"
#include "Sound.h"
using namespace crepe;
using namespace std;
Sound::Sound(const Asset & src, Mediator & mediator) : Resource(src, mediator) {
this->sample.load(src.get_path().c_str());
dbg_trace();
}
Sound::~Sound() { dbg_trace(); }
|