1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2025-01-17 21:47:08 +00:00
re3/src/core/Range2D.h

11 lines
207 B
C
Raw Normal View History

2020-06-03 01:45:25 +00:00
#pragma once
class CRange2D
{
CVector2D min, max;
public:
CRange2D(CVector2D _min, CVector2D _max);
bool IsInRange(CVector2D vec);
void DebugShowRange(float, int);
CVector2D GetRandomPointInRange();
};