blob: 0e2eb153094c7436d0dcd0c156586a4a0ed418f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* $Id$ */
/** @file ai_townlist.hpp List all the towns. */
#ifndef AI_TOWNLIST_HPP
#define AI_TOWNLIST_HPP
#include "ai_abstractlist.hpp"
/**
* Creates a list of towns that are currently on the map.
* @ingroup AIList
*/
class AITownList : public AIAbstractList {
public:
static const char *GetClassName() { return "AITownList"; }
AITownList();
};
#endif /* AI_TOWNLIST_HPP */
|