aboutsummaryrefslogtreecommitdiff
path: root/frontend/GameData.cpp
blob: ad22aa0102e629c44fa41d11bddf2bc4c734d403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <memory>

#include "GameData.h"

using namespace std;

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

GameData::GameData() {
	this->db = make_unique<DB>("kerkersendraken.db");
}