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
2018-03-02 08:13:45 -03:00

14 lines
No EOL
250 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.getServerZone().run( argc, argv );
return 0;
}