#include "world.h" #include "game.h" int main() { GameState game; game_init(&game); world_init(&game, draw, key_handler, update); return 0; }