mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-04 05:15:51 -04:00
Added serverPathfinding library
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user