mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-23 01:57:21 +03:00
Initial commit
This commit is contained in:
commit
77cdaaf97e
827 changed files with 418745 additions and 0 deletions
11
src/core/Range2D.h
Normal file
11
src/core/Range2D.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
class CRange2D
|
||||
{
|
||||
CVector2D min, max;
|
||||
public:
|
||||
CRange2D(CVector2D _min, CVector2D _max);
|
||||
bool IsInRange(CVector2D vec);
|
||||
void DebugShowRange(float, int);
|
||||
CVector2D GetRandomPointInRange();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue