blob: b65dfb2115707af010911710595e51e1afff243f (
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();
}
|