Add a method in NewGRFInspectWindow to resolve FeatureIndex
[openttd/fttd.git] / src / cheat_type.h
bloba345cdd3bd3e16040a89d46ec7ec71ab374bc27a
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 cheat_type.h Types related to cheating. */
12 #ifndef CHEAT_TYPE_H
13 #define CHEAT_TYPE_H
15 /**
16 * Info about each of the cheats.
18 struct Cheat {
19 bool been_used; ///< has this cheat been used before?
20 bool value; ///< tells if the bool cheat is active or not
23 /**
24 * WARNING! Do _not_ remove entries in Cheats struct or change the order
25 * of the existing ones! Would break downward compatibility.
26 * Only add new entries at the end of the struct!
28 struct Cheats {
29 Cheat magic_bulldozer; ///< dynamite industries, objects
30 Cheat switch_company; ///< change to another company
31 Cheat money; ///< get rich or poor
32 Cheat crossing_tunnels; ///< allow tunnels that cross each other
33 Cheat dummy1; ///< empty cheat (build while in pause mode)
34 Cheat no_jetcrash; ///< no jet will crash on small airports anymore
35 Cheat dummy2; ///< empty cheat (change the climate of the map)
36 Cheat change_date; ///< changes date ingame
37 Cheat setup_prod; ///< setup raw-material production in game
38 Cheat dummy3; ///< empty cheat (enable running el-engines on normal rail)
41 extern Cheats _cheats;
43 #endif /* CHEAT_TYPE_H */