Added some basic font rendering and texas holdem

This commit is contained in:
2021-05-03 21:32:40 -07:00
parent f559ff2092
commit 8546a2bcf8
35 changed files with 827 additions and 72 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;