mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-27 11:53:44 +00:00
11 lines
No EOL
207 B
C++
11 lines
No EOL
207 B
C++
#pragma once
|
|
|
|
class CRange2D
|
|
{
|
|
CVector2D min, max;
|
|
public:
|
|
CRange2D(CVector2D _min, CVector2D _max);
|
|
bool IsInRange(CVector2D vec);
|
|
void DebugShowRange(float, int);
|
|
CVector2D GetRandomPointInRange();
|
|
}; |