9 lines
186 B
C
9 lines
186 B
C
|
/* amount of speed to slow down on bounce */
|
||
|
#define BOUNCE_SLOWDOWN 1
|
||
|
|
||
|
/* minimum speed of the ball */
|
||
|
#define BALL_MINSPEED 0x0010
|
||
|
|
||
|
/* initial amount of lifes */
|
||
|
#define START_LIFES 3
|