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

#include "SoundSystem.h"

using namespace crepe;

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

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

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