Files @ r12405:ba094e765533
Branch filter:

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

smatz
(svn r16849) -Codechange: replace GetCargo() by CargoSpec::Get()
/* $Id$ */

/** @file ai_buoylist.cpp Implementation of AIBuoyList and friends. */

#include "ai_buoylist.hpp"
#include "../../station_base.h"

AIBuoyList::AIBuoyList()
{
	Station *st;
	FOR_ALL_STATIONS(st) {
		if (st->IsBuoy()) this->AddItem(st->xy);
	}
}