This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/common/wrect.h

13 lines
347 B
C

//=======================================================================
// Copyright XashXT Group 2010 ©
// wrect.h - rectangle definition
//=======================================================================
#ifndef WRECT_H
#define WRECT_H
typedef struct wrect_s
{
int left, right, top, bottom;
} wrect_t;
#endif//WRECT_H