1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-29 07:37:45 +00:00
sapphire/src/servers/sapphire_zone/mainGameServer.cpp

17 lines
No EOL
291 B
C++

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