summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_buoylist.cpp
blob: 0ba66fb39875fa7e504700c0a9c68a7bc6307d3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $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);
	}
}