mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-27 08:43:43 +00:00
a8a28c1512
# Conflicts: # src/control/CarCtrl.cpp # src/math/Matrix.h # src/math/Vector2D.h # src/math/math.cpp # src/render/Skidmarks.cpp
17 lines
No EOL
227 B
C++
17 lines
No EOL
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;
|
|
} |