mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 12:31:51 +00:00
16 lines
189 B
C
16 lines
189 B
C
|
#ifndef _METER_H_
|
||
|
#define _METER_H_
|
||
|
|
||
|
/*
|
||
|
meter.h
|
||
|
|
||
|
Dorky status bar stuff
|
||
|
*/
|
||
|
|
||
|
void MeterStart( int max );
|
||
|
void MeterAdvance( int amt );
|
||
|
void MeterEnd( void );
|
||
|
|
||
|
extern int showmeter;
|
||
|
|
||
|
#endif
|