summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 597ce390ba862ac4d1f8c912addc04535c4e4667 (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();

	grid->description();

	return 0;
}