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