28 lines
356 B
C++
28 lines
356 B
C++
#include "server_application.hpp"
|
|
|
|
ServerApplication ServerApplication::instance;
|
|
|
|
ServerApplication::ServerApplication() {
|
|
//TODO
|
|
}
|
|
|
|
ServerApplication::~ServerApplication() {
|
|
//TODO
|
|
}
|
|
|
|
void ServerApplication::Init() {
|
|
//TODO
|
|
|
|
//Init SDL
|
|
//Init lua
|
|
//Init SQL
|
|
}
|
|
|
|
void ServerApplication::Loop() {
|
|
//TODO
|
|
}
|
|
|
|
void ServerApplication::Quit() {
|
|
//TODO
|
|
}
|