Let HandleWindowDragging return a boolean status
[openttd/fttd.git] / src / game / game_info.hpp
blobdd92c7729d5820b2be984b15fb6caf8c61e7707a
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 game_info.hpp GameInfo keeps track of all information of an Game, like Author, Description, ... */
12 #ifndef GAME_INFO_HPP
13 #define GAME_INFO_HPP
15 #include "../script/script_info.hpp"
17 /** All static information from an Game like name, version, etc. */
18 class GameInfo : public ScriptVersionedInfo {
19 public:
20 /** Gather all the information on registration. */
21 SQInteger construct (class ScriptScanner *scanner) OVERRIDE;
24 /** All static information from an Game library like name, version, etc. */
25 class GameLibrary : public ScriptLibraryInfo {
28 #endif /* GAME_INFO_HPP */