blob: ad50637a3c0beed5d2bb8612e0d550d81de6a9b5 (
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) : Resource(src) {
this->sample.load(src.get_path().c_str());
dbg_trace();
}
Sound::~Sound() { dbg_trace(); }
|