From 518619603ab3c49b7fdfcf19c439c1a30668164f Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 2 Apr 2015 15:28:31 -0600 Subject: Everything works, it could use more stuff. --- src/cell.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/cell.h (limited to 'src/cell.h') diff --git a/src/cell.h b/src/cell.h new file mode 100644 index 0000000..4fb137e --- /dev/null +++ b/src/cell.h @@ -0,0 +1,14 @@ +#ifndef CELL_H +#define CELL_H + +class Cell +{ +public: + Cell(); + + int iWalls; + int iDist; + int iPath; +}; + +#endif -- cgit v1.2.3