1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-02-01 00:24:27 +01:00
Files
OpenTTD/src/ai/api/ai_buoylist.cpp

15 lines
257 B
C++

/* $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);
}
}