remove the broken variable timestep

This commit is contained in:
2024-07-08 17:16:24 -03:00
parent 5738870147
commit 17d7bcd330
4 changed files with 8 additions and 28 deletions

View File

@@ -10,11 +10,6 @@
#include <stdint.h>
void game_step(int64_t delta) {
(void)delta;
}
void game_tick(void) {
if (ctx.tick_count == 0) {
ctx.udata = ccalloc(1, sizeof (struct state));

View File

@@ -7,7 +7,6 @@
#include <stdint.h>
void game_step(int64_t delta);
void game_tick(void);
void game_end(void);