diff options
author | Mike Buland <mike@xagasoft.com> | 2015-04-02 15:28:31 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2015-04-02 15:28:31 -0600 |
commit | 518619603ab3c49b7fdfcf19c439c1a30668164f (patch) | |
tree | dda7774f51bde150db91dac14718cc78f7571039 /src/cell.cpp | |
download | lost-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.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cell.cpp b/src/cell.cpp new file mode 100644 index 0000000..4aeb32d --- /dev/null +++ b/src/cell.cpp | |||
@@ -0,0 +1,11 @@ | |||
1 | #include "cell.h" | ||
2 | |||
3 | #include <stdio.h> | ||
4 | |||
5 | Cell::Cell() : | ||
6 | iWalls( 0 ), | ||
7 | iDist( 0 ), | ||
8 | iPath( 0 ) | ||
9 | { | ||
10 | } | ||
11 | |||