summaryrefslogtreecommitdiff
path: root/src/View/MainWindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/View/MainWindow.hpp')
-rw-r--r--src/View/MainWindow.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/View/MainWindow.hpp b/src/View/MainWindow.hpp
index 072a7ec..3eacd54 100644
--- a/src/View/MainWindow.hpp
+++ b/src/View/MainWindow.hpp
@@ -6,10 +6,10 @@
#include <string>
#include <sstream>
#include "../Model/Stats.hpp"
+#include "../Helpers/Skin.hpp"
#include <SFML/Window.hpp>
#include <SFML/Graphics.hpp>
-
class MainWindow : public sf::RenderWindow{
private:
@@ -26,6 +26,8 @@ class MainWindow : public sf::RenderWindow{
sf::Vector2u m_gridPosition;
int m_spaceBetweenCell;
+ std::string m_skinName;
+
public:
MainWindow(int width, int height, std::string title);
~MainWindow();
@@ -39,5 +41,6 @@ class MainWindow : public sf::RenderWindow{
void drawATH(Stats stats);
+ void MoveCell();
void drawGame(std::vector<std::vector<int> > grid, bool gameIsOver, Stats stats);
};