Added some basic font rendering and texas holdem

This commit is contained in:
2021-05-03 21:32:40 -07:00
parent 96db74a546
commit 469750b0a0
31 changed files with 826 additions and 67 deletions

View File

@ -31,10 +31,14 @@ typedef struct {
float last;
/**
* Fixed timestep that occured since the last frame. Typically locked to 1/60
* steps per second.
* Varying timestep that occured since the last frame.
*/
float delta;
/**
* Fixed timestep that is not affected by framerate but remains consistent.
*/
float fixedDelta;
} gametime_t;
extern gametime_t TIME_STATE;