17 lines
234 B
C++
17 lines
234 B
C++
#include "console.h"
|
|
#include <cstdlib>
|
|
using namespace std;
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
// Load config files, if any.
|
|
|
|
// Run command loop
|
|
|
|
Console::loop();
|
|
|
|
// Perform any shutdown/cleanup.
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|