mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-01-05 14:41:48 +01:00
17 lines
227 B
C++
17 lines
227 B
C++
#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;
|
|
} |