1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-14 13:53:11 +00:00
re3/src/math/Rect.cpp

17 lines
227 B
C++
Raw Normal View History

#include "common.h"
CRect::CRect(void)
{
left = 1000000.0f;
top = 1000000.0f;
right = -1000000.0f;
bottom = -1000000.0f;
}
CRect::CRect(float l, float t, float r, float b)
{
left = l;
top = t;
right = r;
bottom = b;
}