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

using namespace crepe;

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