author | truelight |
Fri, 04 May 2007 22:59:59 +0000 | |
branch | noai |
changeset 9617 | df9cedf12aab |
parent 9596 | 8af5a1399842 |
child 9772 | c1035f0ac732 |
permissions | -rw-r--r-- |
/* $Id$ */ /** @file ai_townlist.hpp list all the towns */ #ifndef AI_TOWNLIST_HPP #define AI_TOWNLIST_HPP #include "ai_abstractlist.hpp" /** * Class that creates a list of current towns. */ class AITownList : public AIAbstractList { public: /** * The name of the class, needed by several sub-processes. */ static const char *GetClassName() { return "AITownList"; } /** * The constructor to make a list of towns. */ AITownList(); }; #endif /* AI_TOWNLIST_HPP */