diff options
Diffstat (limited to 'engine/sbar.h')
| -rw-r--r-- | engine/sbar.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/engine/sbar.h b/engine/sbar.h new file mode 100644 index 0000000..010c6ed --- /dev/null +++ b/engine/sbar.h @@ -0,0 +1,18 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//=============================================================================// +#ifndef SBAR_H +#define SBAR_H +#pragma once + +// the status bar is only redrawn if something has changed, but if anything +// does, the entire thing will be redrawn for the next vid.numpages frames. +void Sbar_Draw (void); +// called every frame by screen + +#endif // SBAR_H + |