src/ai/api/ai_industrylist.cpp
author truebrain
Sat, 23 Feb 2008 14:49:31 +0000
branchnoai
changeset 9743 4c44aa6a8f43
parent 9649 bc8c06513f5b
child 9776 ee9923d46fba
permissions -rw-r--r--
(svn r12223) [NoAI] -Fix r12221: look mom, I can break compilation!
#include "ai_industrylist.hpp"
#include "../../industry.h"

AIIndustryList::AIIndustryList()
{
	Industry *i;
	FOR_ALL_INDUSTRIES(i) {
		this->AddItem(i->index);
	}
}