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