mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-08 17:28:20 +00:00
85672e060a
* fix: signal handling * fix: flush WorldServer logger before main loop * fix: consolidate signal code
8 lines
93 B
C++
8 lines
93 B
C++
#include "Game.h"
|
|
|
|
namespace Game {
|
|
void OnSignal(int signal) {
|
|
lastSignal = signal;
|
|
}
|
|
}
|