#include "client/engine/Utils.h" float interpolate(float lag, float from, float to) { return from + lag * (to - from); }