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

17 lines
291 B
C++
Raw Normal View History

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