1 /*
2  * sbar.h -- HUD / status bar
3  * $Id: sbar.h 4767 2012-06-16 20:48:51Z sezero $
4  *
5  * Copyright (C) 1996-1997  Id Software, Inc.
6  * Copyright (C) 1997-1998  Raven Software Corp.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or (at
11  * your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  *
17  * See the GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  */
23 
24 #ifndef __HX2_SBAR_H
25 #define __HX2_SBAR_H
26 
27 // HEADER FILES ------------------------------------------------------------
28 
29 // MACROS ------------------------------------------------------------------
30 
31 // TYPES -------------------------------------------------------------------
32 
33 // PUBLIC FUNCTION PROTOTYPES ----------------------------------------------
34 
35 void Sbar_Init(void);
36 void Sbar_Changed(void);
37 void Sbar_Draw(void);
38 void SB_InvChanged(void);
39 void SB_InvReset(void);
40 void SB_ViewSizeChanged(void);
41 void Sbar_DeathmatchOverlay(void);
42 
43 // PUBLIC DATA DECLARATIONS ------------------------------------------------
44 
45 extern int sb_lines; // scan lines to draw
46 
47 
48 #endif	/* __HX2_SBAR_H */
49 
50