mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-29 07:37:45 +00:00
12 lines
237 B
C++
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;
|
|
}
|