1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-28 07:07:45 +00:00
sapphire/src/lobby/mainLobbyServer.cpp

17 lines
263 B
C++
Raw Normal View History

2017-08-08 13:53:47 +02:00
#include "ServerLobby.h"
#include <Util/CrashHandler.h>
Sapphire::Common::Util::CrashHandler crashHandler;
Sapphire::Lobby::ServerLobby g_serverLobby( "lobby.ini" );
2017-08-08 13:53:47 +02:00
int main( int32_t argc, char* argv[] )
2017-08-08 13:53:47 +02:00
{
g_serverLobby.run( argc, argv );
2017-08-08 13:53:47 +02:00
return 0;
2017-08-08 13:53:47 +02:00
}