Files
@ r11976:ae6aa97461b7
Branch filter:
Location: cpp/openttd-patchpack/source/src/ai/api/ai_townlist.hpp - annotation
r11976:ae6aa97461b7
387 B
text/x-c++hdr
(svn r16387) -Codechange: use Aircraft instead of Vehicle where appropriate
r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 | /* $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 */
|