Files @ r10907:3616576a3216
Branch filter:

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

rubidium
(svn r15242) -Feature: allow moving clients between companies/spectators by the server and the clients themselves (dihedral)
/* $Id$ */

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

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

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