2017-04-29 18:43:17 +00:00
|
|
|
//Delta time class header
|
|
|
|
|
2017-05-05 14:19:44 +00:00
|
|
|
#ifndef __DT_H_INCLUDED__
|
|
|
|
#define __DT_H_INCLUDED__
|
|
|
|
|
2017-04-29 18:43:17 +00:00
|
|
|
#include<SDL2/SDL.h>
|
|
|
|
|
|
|
|
class DeltaTime{
|
|
|
|
public:
|
|
|
|
DeltaTime();
|
|
|
|
float getDt();
|
|
|
|
private:
|
|
|
|
float now, last, dt;
|
|
|
|
};
|
2017-05-05 14:19:44 +00:00
|
|
|
|
|
|
|
#endif
|