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

14 lines
250 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.getServerZone().run( argc, argv );
2017-08-08 13:53:47 +02:00
return 0;
}