1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-29 15:47:46 +00:00
sapphire/src/servers/Server_Zone/mainGameServer.cpp

13 lines
237 B
C++
Raw Normal View History

2017-08-08 13:53:47 +02:00
#include <iostream>
#include "ServerZone.h"
#include <boost/algorithm/string.hpp>
2017-08-08 13:53:47 +02:00
Core::ServerZone g_serverZone( "config/settings_zone.xml" );
int main( int32_t argc, char* argv[] )
2017-08-08 13:53:47 +02:00
{
g_serverZone.run( argc, argv );
return 0;
2017-08-29 10:42:19 +02:00
}