mirror of
https://github.com/FWGS/hlsdk-xash3d
synced 2024-11-10 20:29:35 +01:00
16 lines
328 B
C
16 lines
328 B
C
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
#if !defined( WRECTH )
|
|||
|
#define WRECTH
|
|||
|
|
|||
|
typedef struct rect_s
|
|||
|
{
|
|||
|
int left, right, top, bottom;
|
|||
|
} wrect_t;
|
|||
|
|
|||
|
#endif
|