pvjc26/a5.2/main.c
2026-05-08 14:16:31 +02:00

9 lines
154 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;
}