mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 17:23:25 +00:00
6 lines
107 B
C
6 lines
107 B
C
|
#include "game_state.h"
|
||
|
|
||
|
void game_state_tick(GameState* const game_state) {
|
||
|
game_state->distance++;
|
||
|
}
|