00001 /*************************************************************************** 00002 configuration.h - description 00003 ------------------- 00004 begin : Mon Feb 4 2002 00005 copyright : (C) 2002 by Samuele Catuzzi 00006 email : samuele_catuzzi@yahoo.it 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 #ifndef CONFIGURATION_H 00018 #define CONFIGURATION_H 00019 00020 struct Configuration { 00021 double decel; 00022 double hitballdecel; 00023 double hitedgedecel; 00024 int check_speed; 00025 int angle_factor; 00026 } ; 00027 00028 struct MusicConfiguration { 00029 bool enablemusic; 00030 bool enableeffects; 00031 } ; 00032 00033 #endif