summaryrefslogtreecommitdiff
path: root/cell.h
diff options
context:
space:
mode:
authordaniel-Jones <daniel@danieljon.es>2018-09-04 20:34:39 +0930
committerdaniel-Jones <daniel@danieljon.es>2018-09-04 20:34:39 +0930
commit06aca0d336b4c6fc08f1b448c271ce8b4e5144e8 (patch)
tree89e871a2a746734cd9cda34c3ab72686fb409bc1 /cell.h
parentd986eabb3c0009b1180707cbbc88125312f9212a (diff)
downloadqtminesweeper-06aca0d336b4c6fc08f1b448c271ce8b4e5144e8.tar.gz
qtminesweeper-06aca0d336b4c6fc08f1b448c271ce8b4e5144e8.zip
added BUGS file, created and placed cells
However, the cells will soon use std::vector instead of a qt list.
Diffstat (limited to 'cell.h')
-rw-r--r--cell.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cell.h b/cell.h
index 846f9d0..8ede3fa 100644
--- a/cell.h
+++ b/cell.h
@@ -32,6 +32,7 @@ class cell : public square
NUMBER = 1 << 3 /* square is a number */
};
void flagcheck();
+ int getflags();
private:
enum flagtype flags;