//Delta time class header #include class CUU{ public: CUU(); float getDt(); int rendererWidth(); int rendererHeight(); private: float now, last, dt; };