summaryrefslogtreecommitdiff
path: root/src/cell.h
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2015-04-02 15:28:31 -0600
committerMike Buland <mike@xagasoft.com>2015-04-02 15:28:31 -0600
commit518619603ab3c49b7fdfcf19c439c1a30668164f (patch)
treedda7774f51bde150db91dac14718cc78f7571039 /src/cell.h
downloadlost-518619603ab3c49b7fdfcf19c439c1a30668164f.tar.gz
lost-518619603ab3c49b7fdfcf19c439c1a30668164f.tar.bz2
lost-518619603ab3c49b7fdfcf19c439c1a30668164f.tar.xz
lost-518619603ab3c49b7fdfcf19c439c1a30668164f.zip
Everything works, it could use more stuff.
Diffstat (limited to '')
-rw-r--r--src/cell.h14
1 files changed, 14 insertions, 0 deletions
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 @@
1#ifndef CELL_H
2#define CELL_H
3
4class Cell
5{
6public:
7 Cell();
8
9 int iWalls;
10 int iDist;
11 int iPath;
12};
13
14#endif