blob: b576ba54a083962fb29b3162084f594a836a5d53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
core/core.cc
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
// project headers
#include "common/common.h"
#include "filesystem/filesystem.h"
#include "core/core.h"
namespace core
{
/// initialize the core
void init() {
common::init();
filesystem::init();
con_debug << "Initializing core..." << std::endl;
}
/// shutdown the core
void shutdown() {
con_debug << "Shutting down core..." << std::endl;
filesystem::shutdown();
common::shutdown();
}
}
|