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

28 lines
296 B
C
Raw Normal View History

2021-01-10 16:42:01 +00:00
#include "game.h"
2021-01-11 20:11:03 +00:00
#include "platform.h"
2021-01-10 16:42:01 +00:00
2021-01-11 13:47:14 +00:00
void game_init() {
2021-01-11 20:11:03 +00:00
platform_init();
2021-01-10 16:42:01 +00:00
}
2021-01-11 13:47:14 +00:00
void game_shutdown() {
2021-01-11 20:11:03 +00:00
platform_shutdown();
2021-01-10 16:42:01 +00:00
}
2021-01-11 20:08:16 +00:00
uint8_t game_is_running() {
2021-01-11 20:11:03 +00:00
return platform_is_running();
2021-01-11 20:08:16 +00:00
}
2021-01-10 16:42:01 +00:00
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-11 20:11:03 +00:00
platform_render();
2021-01-10 16:42:01 +00:00
}