Skip to content
Snippets Groups Projects
main.c 285 B
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");
Arnaud Albiez's avatar
Arnaud Albiez committed
		Affichage_grid(grid);
		char entry = fgetc(stdin);
		switch(entry){
Arnaud Albiez's avatar
Arnaud Albiez committed
			case 'e' :{