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

25 lines
217 B
C
Raw Normal View History

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