eco2d/code/apps/client/header/game.h

11 lines
161 B
C
Raw Normal View History

2021-01-11 13:47:14 +00:00
#pragma once
2021-01-11 20:08:16 +00:00
#include "system.h"
2021-01-10 16:42:01 +00:00
2021-01-11 13:47:14 +00:00
void game_init();
void game_shutdown();
2021-01-11 20:08:16 +00:00
uint8_t game_is_running();
2021-01-10 16:42:01 +00:00
2021-01-11 13:47:14 +00:00
void game_input();
void game_update();
void game_render();