eco2d/code/apps/client/source/game.c

25 lines
232 B
C
Raw Normal View History

2021-01-10 16:42:01 +00:00
#include "game.h"
#include "renderer.h"
void game_init() {
gfx_init();
}
void game_shutdown() {
gfx_shutdown();
}
void game_input() {
}
void game_update() {
}
void game_render() {
gfx_render();
}