Files
@ r15277:0ede290e5561
Branch filter:
Location: cpp/openttd-patchpack/source/src/ai/api/ai_signlist.cpp - annotation
r15277:0ede290e5561
871 B
text/x-c
(svn r19922) -Fix[FS#3815]: Use of better english. "by" instead of "with" (planetmaker)
r11989:6b25ffd91182 r11989:6b25ffd91182 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 r11989:6b25ffd91182 | /* $Id$ */
/*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file ai_signlist.cpp Implementation of AISignList and friends. */
#include "ai_signlist.hpp"
#include "ai_sign.hpp"
#include "../../signs_base.h"
AISignList::AISignList()
{
Sign *s;
FOR_ALL_SIGNS(s) {
if (AISign::IsValidSign(s->index)) this->AddItem(s->index);
}
}
|