summaryrefslogtreecommitdiff
path: root/common/tile.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/tile.h')
-rw-r--r--common/tile.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/common/tile.h b/common/tile.h
index 6f83632..93bdb8d 100644
--- a/common/tile.h
+++ b/common/tile.h
@@ -59,6 +59,15 @@ class Tile {
virtual ~Tile(){};
+ //! Get the numeric value of the tile (if one of the man/pin/sou-sets).
+ int get_num();
+
+ //! Compare two tiles. Equal if type matches; flags are not compared.
+ bool operator==(const Tile& other);
+
+ //! Increment type. Useful for iterating over all possible types.
+ Tile operator++(int);
+
template<class Archive>
void serialize(Archive & ar, const unsigned int version) {
ar & type;