1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-29 07:37:45 +00:00
sapphire/src/servers/Server_Zone/mainGameServer.cpp
Mordred Admin 2f20a8254f Build fix
2017-08-29 10:42:19 +02: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;
}