18 lines
325 B
C
Raw Normal View History

2020-04-22 13:12:23 +05:00
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
2017-12-18 02:39:44 +03:00
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
2020-04-22 13:12:23 +05:00
#pragma once
2017-12-18 02:39:44 +03:00
#if !defined( WRECTH )
#define WRECTH
typedef struct rect_s
{
2020-04-22 13:12:23 +05:00
int left, right, top, bottom;
2017-12-18 02:39:44 +03:00
} wrect_t;
2020-04-22 13:12:23 +05:00
#endif
2020-08-01 22:11:53 +05:00