blob: 4b7992ea3ac63b09fbc3bd3ec37360cf56086f2a (
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
|
/*
server/console.cc
This file is part of the Osirion project and is distributed under
the terms and conditions of the GNU General Public License version 2
*/
#include "server/console.h"
#include "core/core.h"
#include <iostream>
namespace server {
Console server_console;
Console *console()
{
return (&server_console);
}
void Console::init()
{
con_print << "Initializing console..." << std::endl;
}
void Console::shutdown()
{
con_print << "Shutting down console..." << std::endl;
}
}
|