//Delta time class header
#include<SDL2/SDL.h>
class DeltaTime{
public:
DeltaTime();
float getDt();
private:
float now, last, dt;
};