More progress.

This commit is contained in:
2025-12-11 15:11:01 +01:00
parent f2fc2dadcd
commit cdbd0b2c43
17 changed files with 668 additions and 117 deletions

12
src/simulation/input.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef SIM_GAME_INPUT_H
#define SIM_GAME_INPUT_H
typedef struct {
// Movement can probably just be one byte. For a traditional snake-game, only one directional-input is OK.
bool up;
bool down;
bool right;
bool left;
} Simulation_Game_Input;
#endif