aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/SoundContext.cpp
blob: 5e5a3a9689b227727dde09c04838f19adbfd0421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "../util/log.h"

#include "SoundContext.h"

using namespace crepe;

SoundContext & SoundContext::get_instance() {
	static SoundContext instance;
	return instance;
}

SoundContext::SoundContext() {
	dbg_trace();
	engine.init();
}

SoundContext::~SoundContext() {
	dbg_trace();
	engine.deinit();
}