pvjc22/a4/main.c

10 lines
152 B
C
Raw Permalink Normal View History

2022-05-03 19:11:54 +00:00
#include "game.h"
#include "world.h"
#include <stdlib.h>
int main(int argc, char** argv){
start_world(init_game,game_event,free);
return 0;
}