15 lines
203 B
C++
15 lines
203 B
C++
#ifndef RM_UTILITY_H
|
|
#define RM_UTILITY_H
|
|
|
|
|
|
class RMUtility
|
|
{
|
|
public:
|
|
RMUtility();
|
|
|
|
static float range(float fmin, float fmax,float tmin, float tmax, float value);
|
|
|
|
};
|
|
|
|
#endif // RM_UTILITY_H
|