Update: Translations from eints
[openttd-github.git] / src / script / api / script_signlist.cpp
blob000c10409375db610a1d311b6d44c4df30236948
1 /*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
8 /** @file script_signlist.cpp Implementation of ScriptSignList and friends. */
10 #include "../../stdafx.h"
11 #include "script_signlist.hpp"
12 #include "script_sign.hpp"
13 #include "../../signs_base.h"
15 #include "../../safeguards.h"
17 ScriptSignList::ScriptSignList(HSQUIRRELVM vm)
19 ScriptList::FillList<Sign>(vm, this,
20 [](const Sign *s) { return ScriptSign::IsValidSign(s->index); }