src/ai/api/ai_vehiclelist.hpp
branchnoai
changeset 9614 814c3bbf8ecc
child 9632 1816329e9cdd
equal deleted inserted replaced
9613:5dedb2fa1ab0 9614:814c3bbf8ecc
       
     1 /* $Id$ */
       
     2 
       
     3 /** @file ai_vehiclelist.hpp list all the vehicles (you own) */
       
     4 
       
     5 #ifndef AI_VEHICLELIST_HPP
       
     6 #define AI_VEHICLELIST_HPP
       
     7 
       
     8 #include "ai_abstractlist.hpp"
       
     9 
       
    10 /**
       
    11  * Class that creates a list of vehicles you own.
       
    12  */
       
    13 class AIVehicleList : public AIAbstractList {
       
    14 public:
       
    15 	/**
       
    16 	 * The name of the class, needed by several sub-processes.
       
    17 	 */
       
    18 	static const char *GetClassName() { return "AIVehicleList"; }
       
    19 
       
    20 	/**
       
    21 	 * The constructor to make a list of towns.
       
    22 	 */
       
    23 	AIVehicleList();
       
    24 };
       
    25 
       
    26 #endif /* AI_VEHICLELIST_HPP */