7 lines
122 B
C
7 lines
122 B
C
#ifndef _UTILS_H
|
|
#define _UTILS_H
|
|
|
|
double lerpf(double a, double b, double t);
|
|
int clamp(int x, int min, int max);
|
|
|
|
#endif |