snake/main.c

10 lines
153 B
C
Raw Normal View History

2020-04-23 15:39:46 +00:00
#include "game.h"
#include "world.h"
#include <stdlib.h>
int main(int argc, char** argv){
start_world(world_event,init_game,free);
return 0;
}