pvjc25/a4/main.c
2025-05-01 15:59:49 +00:00

8 lines
146 B
C

#include "world.h"
#include "game.h"
#include <stdlib.h>
int main(int argc, char** argv){
return start_world(init_game, game_event, free);
}