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

17 lines
205 B
C
Raw Normal View History

2021-01-10 16:42:01 +00:00
#include "game.h"
int main(void)
{
game_init();
2021-01-11 13:47:14 +00:00
while (!WindowShouldClose())
2021-01-10 16:42:01 +00:00
{
game_input();
game_update();
game_render();
}
game_shutdown();
return 0;
}