blob: b5f3db39d7d58f1d9e82510f91a5b0d00d6941d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "../util/log.h"
#include "SoundContext.h"
using namespace crepe;
SoundContext::SoundContext() {
dbg_trace();
engine.init();
}
SoundContext::~SoundContext() {
dbg_trace();
engine.deinit();
}
|