game_state.c 107 B

12345
  1. #include "game_state.h"
  2. void game_state_tick(GameState* const game_state) {
  3. game_state->distance++;
  4. }