diff options
Diffstat (limited to 'src/Model/Grid.hpp')
| -rw-r--r-- | src/Model/Grid.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Model/Grid.hpp b/src/Model/Grid.hpp index 09f3e5e..4ed5c10 100644 --- a/src/Model/Grid.hpp +++ b/src/Model/Grid.hpp @@ -18,7 +18,10 @@ class Grid int m_size; std::vector<std::vector<int> > m_grid; + int m_lastMoveScore; + int maxStrLenInGrid(); + public: Grid(); ~Grid(); @@ -50,6 +53,8 @@ class Grid bool swipeLeft(); bool swipeUp(); bool swipeDown(); + + int getLastMoveScore(); }; |
