mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 11:34:14 +01: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();
|
||
|
};
|