author | truebrain |
Fri, 23 May 2008 08:52:29 +0000 | |
branch | noai |
changeset 10674 | 542470cee8a2 |
parent 10455 | 22c441f5adf9 |
permissions | -rw-r--r-- |
/* $Id$ */ /** @file ai_enginelist.cpp Implementation of AIEngineList and friends. */ #include "ai_enginelist.hpp" #include "../../engine_base.h" AIEngineList::AIEngineList(AIVehicle::VehicleType vehicle_type) { Engine *e; FOR_ALL_ENGINES_OF_TYPE(e, (::VehicleType)vehicle_type) { this->AddItem(e->index); } }