Files @ r12029:5b077ec055c0
Branch filter:

Location: cpp/openttd-patchpack/source/src/ai/api/ai_townlist.cpp

smatz
(svn r16441) -Codechange: new class SpecializedVehicle used as superclass for all vehicle types
/* $Id$ */

/** @file ai_townlist.cpp Implementation of AITownList and friends. */

#include "ai_townlist.hpp"
#include "../../town.h"

AITownList::AITownList()
{
	Town *t;
	FOR_ALL_TOWNS(t) {
		this->AddItem(t->index);
	}
}