1 /***************************************************************************
2                           extras.h  -  description
3                              -------------------
4     begin                : Sun Sep 9 2001
5     copyright            : (C) 2001 by Michael Speck
6     email                : kulkanie@gmx.net
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 
18 /* Play sounds and handle graphical effects. */
19 void client_handle_collected_extra( Paddle *paddle, int extra_type );
20 
21 /* move the extras as in extras_update but do not collect them */
22 void client_extras_update( int ms );
23 
24 /*
25 ====================================================================
26 Show, hide extras
27 ====================================================================
28 */
29 void extras_hide();
30 void extras_show_shadow();
31 void extras_show();
32 void extras_alphashow( int alpha );
33 /*
34 ====================================================================
35 Wall
36 ====================================================================
37 */
38 void walls_hide();
39 void walls_show();
40 void walls_alphashow( int alpha );
41 void client_walls_update( int ms );
42 
43