00001 /* $Id: cheat_type.h 14421 2008-09-30 20:39:50Z rubidium $ */ 00002 00005 #ifndef CHEAT_TYPE_H 00006 #define CHEAT_TYPE_H 00007 00011 struct Cheat { 00012 bool been_used; 00013 bool value; 00014 }; 00015 00021 struct Cheats { 00022 Cheat magic_bulldozer; 00023 Cheat switch_company; 00024 Cheat money; 00025 Cheat crossing_tunnels; 00026 Cheat build_in_pause; 00027 Cheat no_jetcrash; 00028 Cheat switch_climate; 00029 Cheat change_date; 00030 Cheat setup_prod; 00031 Cheat dummy; 00032 }; 00033 00034 extern Cheats _cheats; 00035 00036 #endif /* CHEAT_TYPE_H */