lexsdl 0.3.0

A wrapper for SDL2 to abstract away annoying parts
1
2
3
4
5
6
7
8
9
10
#ifndef _LEXSDL_timing_H_
#define _LEXSDL_timing_H_

void LEXSDL_DeltaUpdate(void);

/* Getting the Delta*/
uint32_t LEXSDL_DeltaTime(void);
float LEXSDL_DeltaTimeFloat(void);

#endif