1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-03 17:27:47 +00:00
sapphire/src/servers/Server_Zone/mainGameServer.cpp
Mordred Admin 93c5348e09 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;
}