(svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
/* $Id$ */
/** @file ai_industrylist.hpp list all the industries */
#ifndef AI_INDUSTRYLIST_HPP
#define AI_INDUSTRYLIST_HPP
#include "ai_abstractlist.hpp"
/**
* Class that creates a list of current industries.
*/
class AIIndustryList : public AIAbstractList {
public:
/**
* The name of the class, needed by several sub-processes.
*/
static const char *GetClassName() { return "AIIndustryList"; }
/**
* The constructor to make a list of industries.
*/
AIIndustryList();
};
#endif /* AI_INDUSTRYLIST_HPP */