summaryrefslogblamecommitdiffstats
path: root/src/core/Range2D.h
blob: f239e7de5dfd53eb0596f309cdeb48e29c3b274f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                 
#pragma once

class CRange2D
{
	CVector2D min, max;
public:
	CRange2D(CVector2D _min, CVector2D _max);
	bool IsInRange(CVector2D vec);
	void DebugShowRange(float, int);
	CVector2D GetRandomPointInRange();
};