#include <iostream>
#include <cstdlib>
#include "src/maze.h"

const int WIDTH = 50;
const int HEIGHT = 50;
const int SIZE_CELL = 10;
const string filename = "test.bmp";
int main(int argc, char** argv)
{

  if(argc != 5)
  {
    std::cerr << "Usage: ./maze <filename> <width> <height> <sizecell>" << std::endl;
  }
  else
  {
    create_maze(atoi(argv[2]),atoi(argv[3]),atoi(argv[4]),string(argv[1]));
  }
  return 0;
}


