#ifndef _UTILS_H
#define _UTILS_H
double lerpf(double a, double b, double t);
int clamp(int x, int min, int max);
#endif