summaryrefslogtreecommitdiffstats
path: root/src/core/Core.cpp
blob: a2863591ab9bab1e992973f0f55934227ec6d19c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "Core.hpp"

Core::Core() {
    LOG(INFO)<<"Core initializing...";
}

void Core::MainLoop() {

}

Core::~Core() {
    LOG(INFO)<<"Core stopping...";
}