(svn r12226) [NoAI] -Fix: remove the dep for AIStationList_Vehicle on AIStationList, as Squirrel doesn't like it
/* $Id$ */
/** @file ai_enginelist.hpp list all the engines */
#ifndef AI_ENGINELIST_HPP
#define AI_ENGINELIST_HPP
#include "ai_abstractlist.hpp"
#include "ai_vehicle.hpp"
/**
* Class that creates a list of engines.
*/
class AIEngineList : public AIAbstractList {
public:
/**
* The name of the class, needed by several sub-processes.
*/
static const char *GetClassName() { return "AIEngineList"; }
/**
* The constructor to make a list of engines.
*/
AIEngineList(AIVehicle::VehicleType type);
};
#endif /* AI_ENGINELIST_HPP */