aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ScriptSystem.cpp
blob: 988bb71bc0de519ce99a2a721f6db34b35fce0cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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(); }