summaryrefslogtreecommitdiff
path: root/src/View/MainWindow.hpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-05-03 15:12:46 +0200
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-05-03 15:12:46 +0200
commit7f0edabb5dff0e88d33cd8855eacda07aa17b1ca (patch)
treeeb13ff258201f8ec7cad3d670fd244de5684bae0 /src/View/MainWindow.hpp
parentce3f721e16c779d519c04469e49a65f60546ab8d (diff)
Quickly draw basic grid (no reliable code)
Diffstat (limited to 'src/View/MainWindow.hpp')
-rw-r--r--src/View/MainWindow.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/View/MainWindow.hpp b/src/View/MainWindow.hpp
index a0e7c58..3b13e0c 100644
--- a/src/View/MainWindow.hpp
+++ b/src/View/MainWindow.hpp
@@ -10,11 +10,15 @@
class MainWindow : public sf::RenderWindow{
private:
- std::vector<sf::Color> skin;
+ std::vector<sf::Color> m_skin;
+ int m_windowMargin;
+ int m_sizeCell;
+ int m_spaceBetweenCell;
public:
MainWindow(int width, int height, std::string title);
~MainWindow();
- void clearMW();
+ void clearBG();
+ void drawCells();
};