#ifndef CELL_H #define CELL_H class Cell { public: Cell(); int iWalls; int iDist; int iPath; }; #endif