(svn r28004) -Update from Eints:
[openttd.git] / src / script / api / script_signlist.hpp
blob3b90a23ad63eb756c0662443c171cd9cdb5a86cb
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
8 */
10 /** @file script_signlist.hpp List all the signs of your company. */
12 #ifndef SCRIPT_SIGNLIST_HPP
13 #define SCRIPT_SIGNLIST_HPP
15 #include "script_list.hpp"
17 /**
18 * Create a list of signs your company has created.
19 * @api ai game
20 * @ingroup ScriptList
22 class ScriptSignList : public ScriptList {
23 public:
24 ScriptSignList();
27 #endif /* SCRIPT_SIGNLIST_HPP */