mirror of
https://github.com/ValveSoftware/halflife.git
synced 2025-01-28 22:47:58 +03: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
|