equal
deleted
inserted
replaced
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 |