diff -r 5dedb2fa1ab0 -r 814c3bbf8ecc src/ai/api/ai_vehiclelist.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/ai/api/ai_vehiclelist.hpp Fri May 04 19:55:35 2007 +0000 @@ -0,0 +1,26 @@ +/* $Id$ */ + +/** @file ai_vehiclelist.hpp list all the vehicles (you own) */ + +#ifndef AI_VEHICLELIST_HPP +#define AI_VEHICLELIST_HPP + +#include "ai_abstractlist.hpp" + +/** + * Class that creates a list of vehicles you own. + */ +class AIVehicleList : public AIAbstractList { +public: + /** + * The name of the class, needed by several sub-processes. + */ + static const char *GetClassName() { return "AIVehicleList"; } + + /** + * The constructor to make a list of towns. + */ + AIVehicleList(); +}; + +#endif /* AI_VEHICLELIST_HPP */