Day 28 complete.

This commit is contained in:
2026-04-02 16:06:00 -07:00
parent 88f235ede6
commit 457ff9707f
3 changed files with 88 additions and 10 deletions
+3 -2
View File
@@ -87,7 +87,7 @@ typedef struct game_input {
game_button_state MouseButtons[5];
S32 MouseX, MouseY, MouseZ; /* NOTE: MouseZ is the wheel. */
F32 SecondsToAdvanceOverUpdate;
F32 dtForFrame;
game_controller_input Controllers[5];
} game_input;
@@ -137,7 +137,8 @@ void UpdateAndRender(thread_context *Thread, game_memory *Memory,
*/
typedef struct game_state {
void *filler;
F32 PlayerX;
F32 PlayerY;
} game_state;
#endif