mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-01 01:25:55 +00:00
11 lines
207 B
C
11 lines
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();
|
||
|
};
|