aboutsummaryrefslogtreecommitdiff
path: root/Core/core.cpp
blob: 04c7e53d472571996c054c3372001e2dad51626b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "core.h"

Core::Core(QString applicationPath)
{
    _applicationPath = applicationPath;
}

// TODO
void Core::shutdown()
{
    logPrimitive() << "[stop] quitting masterserver application" << endl;

    // end application
    exit(0);
}