summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 12f6c6d996903957c46720407747c15be6e822e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include <string>

#include "Model/Grid.hpp"

int main()
{
	Grid * grid = new Grid(4);

	grid->afficher();

	return 0;
}