28 lines
372 B
C
28 lines
372 B
C
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* Common data types
|
|
*/
|
|
|
|
struct Point
|
|
{
|
|
int x = 0;
|
|
int y = 0;
|
|
};
|
|
|
|
struct Rect
|
|
{
|
|
int left = 0;
|
|
int right = 0;
|
|
int top = 0;
|
|
int bottom = 0;
|
|
};
|