00001 /*************************************************************************** 00002 cfg.h - description 00003 ------------------- 00004 begin : Fri May 19 2000 00005 copyright : (C) 2000 by Roman Razilov 00006 email : Roman.Razilov@gmx.de 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 __CFG_H 00018 #define __CFG_H 1 00019 00020 #define LINESVERSION "0.6.1" 00021 00022 #define NCOLORS 7 00023 #define BALLSDROP 3 00024 00025 #define NOBALL -1 00026 #define PIXTIME 10 00027 #define FIREBALLS 4 00028 #define BOOMBALLS 4 00029 #define FIREPIX 5 00030 #define STEPTIME 3 00031 #define NORMALBALL PIXTIME + BOOMBALLS 00032 #define TIMERCLOCK 25 00033 00034 enum Anim 00035 { 00036 ANIM_NO, 00037 ANIM_JUMP, 00038 ANIM_RUN, 00039 ANIM_BORN, 00040 ANIM_BURN, 00041 ANIM_YES, 00042 ANIM_BLOCK 00043 }; 00044 00045 //#define _DBG_ 00046 00047 #endif //__CFG_H
1.4.2