7 lines
127 B
C
7 lines
127 B
C
#include "game.h"
|
|
|
|
void simulate_frame(game_state_t *state)
|
|
{
|
|
// TODO: Do something amazing here
|
|
state->version = 1;
|
|
}
|