author | truelight |
Fri, 04 May 2007 22:59:59 +0000 | |
branch | noai |
changeset 9617 | df9cedf12aab |
parent 9614 | 814c3bbf8ecc |
child 9632 | 1816329e9cdd |
permissions | -rw-r--r-- |
/* $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 */