pvjc21/a4/world-master/main.c
Oleksandr Hryshchenko 718ba17bec a4
2021-04-17 18:08:52 +02:00

10 lines
152 B
C

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