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,36 @@
// ======================================================================
//
// ServerPathfindingConstants.h
// Copyright 2001 Sony Online Entertainment Inc.
// All Rights Reserved.
//
// ======================================================================
#ifndef INCLUDED_ServerPathfindingConstants_H
#define INCLUDED_ServerPathfindingConstants_H
// ======================================================================
extern int const CITY_REGION_TYPE;
extern int const PATHFINDING_REGION_TYPE;
extern std::string const SERVER_PATHFINDING_WAYPOINT_TEMPLATE;
extern std::string const SERVER_PATHFINDING_WAYPOINT_TEMPLATE_BASE;
extern std::string const SERVER_PATHFINDING_WAYPOINT_TEMPLATE_AUTO_SPAWN;
extern std::string const OBJVAR_PATHFINDING;
extern std::string const OBJVAR_PATHFINDING_WAYPOINT_CREATOR;
extern std::string const OBJVAR_PATHFINDING_WAYPOINT_EDGES;
extern std::string const OBJVAR_PATHFINDING_WAYPOINT_KEY;
extern std::string const OBJVAR_PATHFINDING_WAYPOINT_NAME;
extern std::string const OBJVAR_PATHFINDING_WAYPOINT_TYPE;
extern std::string const OBJVAR_PATHFINDING_BUILDING_PROCESSED;
extern std::string const OBJVAR_PATHFINDING_BUILDING_WAYPOINTS;
// ======================================================================
#endif