aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Config.cpp
blob: d6206da09393a9d22d5e46868f85b9a37160656b (plain)
1
2
3
4
5
6
7
8
9
#include "Config.h"

using namespace crepe;

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