Added serverPathfinding library

This commit is contained in:
Anonymous
2014-01-15 09:54:09 -07:00
parent 7d149b2784
commit cd99b53a31
43 changed files with 5888 additions and 2 deletions
@@ -0,0 +1,37 @@
// ======================================================================
//
// SetupServerPathfinding.cpp
// copyright (c) 2001 Sony Online Entertainment
//
// ======================================================================
#include "serverPathfinding/FirstServerPathfinding.h"
#include "serverPathfinding/SetupServerPathfinding.h"
#include "serverPathfinding/CityPathGraphManager.h"
#include "serverPathfinding/ServerPathfindingMessaging.h"
#include "sharedFoundation/ExitChain.h"
#include "sharedPathfinding/SetupSharedPathfinding.h"
void SetupServerPathfinding::install ( void )
{
SetupSharedPathfinding::install();
ServerPathfindingMessaging::install();
CityPathGraphManager::install();
ExitChain::add( SetupServerPathfinding::remove, "SetupServerPathfinding" );
}
void SetupServerPathfinding::remove ( void )
{
CityPathGraphManager::remove();
ServerPathfindingMessaging::remove();
SetupSharedPathfinding::remove();
}