Newer
Older
#include <stdio.h>
#include "grid.h"
#include <stdbool.h>
int main(void){
bool run = true;
while(run){
struct Grid* grid = init_level("./level1.txt");
char entry = fgetc(stdin);
switch(entry){
run = false;
break;
}
}
}
}