mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-03 04:19:20 -04:00
38 lines
950 B
C++
Executable File
38 lines
950 B
C++
Executable File
// ======================================================================
|
|
//
|
|
// 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();
|
|
}
|
|
|