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