mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-28 15:17:46 +00:00
16 lines
263 B
C++
16 lines
263 B
C++
#include "ServerLobby.h"
|
|
|
|
#include <Util/CrashHandler.h>
|
|
|
|
Sapphire::Common::Util::CrashHandler crashHandler;
|
|
|
|
Sapphire::Lobby::ServerLobby g_serverLobby( "lobby.ini" );
|
|
|
|
int main( int32_t argc, char* argv[] )
|
|
{
|
|
|
|
g_serverLobby.run( argc, argv );
|
|
|
|
return 0;
|
|
}
|
|
|