mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-11 23:47:53 +00:00
17 lines
324 B
C
17 lines
324 B
C
|
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================
|
||
|
#pragma once
|
||
|
#if !defined( WRECTH )
|
||
|
#define WRECTH
|
||
|
|
||
|
typedef struct rect_s
|
||
|
{
|
||
|
int left, right, top, bottom;
|
||
|
} wrect_t;
|
||
|
|
||
|
#endif
|