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

#include "ScriptSystem.h"

using namespace crepe;

ScriptSystem::ScriptSystem() {
	dbg_trace();
}
ScriptSystem::~ScriptSystem() {
	dbg_trace();
}

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

void ScriptSystem::update() {
	dbg_trace();
}