mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
19 lines
434 B
C
19 lines
434 B
C
|
//====== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. =======//
|
|||
|
//
|
|||
|
// Purpose: CHud handles the message, calculation, and drawing the HUD
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================//
|
|||
|
#ifndef HUD_H
|
|||
|
#define HUD_H
|
|||
|
|
|||
|
// basic rectangle struct used for drawing
|
|||
|
typedef struct wrect_s
|
|||
|
{
|
|||
|
int left;
|
|||
|
int right;
|
|||
|
int top;
|
|||
|
int bottom;
|
|||
|
} wrect_t;
|
|||
|
|
|||
|
#endif // HUD_H
|