pvjc20/final/main.c

9 lines
178 B
C
Raw Normal View History

2020-05-21 16:06:40 +00:00
#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);
}