1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-28 23:27:45 +00:00
sapphire/src/servers/sapphire_lobby/mainLobbyServer.cpp
2018-10-25 17:48:30 +11:00

12 lines
169 B
C++

#include "ServerLobby.h"
Core::ServerLobby g_serverLobby( "config.ini" );
int main( int32_t argc, char* argv[] )
{
g_serverLobby.run( argc, argv );
return 0;
}