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,28 @@
//======================================================================
//
// PathAutoGenerator.h
// copyright (c) 2005 Sony Online Entertainment
//
//======================================================================
#ifndef INCLUDED_PathAutoGenerator_H
#define INCLUDED_PathAutoGenerator_H
//======================================================================
class Region;
class Vector;
//----------------------------------------------------------------------
class PathAutoGenerator
{
public:
static Region const * findPathRegion(Vector const & pos_w);
static void pathAutoGenerate(Vector const & pos_w, float nodeDistance, float obstacleDistance, Unicode::String & result);
static void pathAutoCleanup(Vector const & pos_w, Unicode::String & result);
};
//======================================================================
#endif