pvjc20/final/main.c
2020-05-21 19:06:40 +03:00

9 lines
178 B
C

#include "game.h"
#include "commands.h"
#include <stdlib.h>
int main(int argc, char** argv){
struct game* game = init_game();
init_screen(game);
world_event(game);
}