townengine/src/game/game.h

16 lines
163 B
C
Raw Normal View History

2024-07-08 00:44:20 +00:00
#ifndef GAME_H
#define GAME_H
#include "../game_api.h"
#include <stdint.h>
void game_step(int64_t delta);
void game_tick(void);
void game_end(void);
#endif