1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-05 18:27:47 +00:00
sapphire/src/servers/sapphire_zone/mainGameServer.cpp
2017-12-19 09:27:22 +01:00

12 lines
237 B
C++

#include <iostream>
#include "ServerZone.h"
#include <boost/algorithm/string.hpp>
Core::ServerZone g_serverZone( "config/settings_zone.xml" );
int main( int32_t argc, char* argv[] )
{
g_serverZone.run( argc, argv );
return 0;
}