src/ai/api/ai_pathfinder.hpp
branchnoai
changeset 9669 366771e15a2c
parent 9653 50e2eb4abf46
child 9681 3997f1ce203a
equal deleted inserted replaced
9668:6fe3d2cb9655 9669:366771e15a2c
    13  *  parent-class for real implementation so all PFs have a general
    13  *  parent-class for real implementation so all PFs have a general
    14  *  interface, but can have different backends.
    14  *  interface, but can have different backends.
    15  */
    15  */
    16 class AIPathFinder : public AIObject {
    16 class AIPathFinder : public AIObject {
    17 public:
    17 public:
       
    18 	/**
       
    19 	 * The type of pathfinders known in the game.
       
    20 	 */
    18 	enum PathFinderType {
    21 	enum PathFinderType {
    19 		PATHFINDER_ROAD = 0,
    22 		PATHFINDER_ROAD = 0,
    20 		PATHFINDER_RAIL = 1,
    23 		PATHFINDER_RAIL = 1,
    21 	};
    24 	};
    22 
    25