#ifndef MAZE_H
#define MAZE_H

#include <iostream>
#include <string>
#include <time.h>
#include <cstdlib>
#include "image.h"
#include "SDL.h"

extern "C"{
#include <unistd.h>
}

using namespace std;

void create_maze(int width, int heigth, int size_cell, string filename);

#endif
