aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/Sound.cpp
blob: 97e455edb8f4b13de8da876e144cd311334e3222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "../api/Asset.h"
#include "../util/Log.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(); }