diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-03 15:12:46 +0200 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-03 15:12:46 +0200 |
| commit | 7f0edabb5dff0e88d33cd8855eacda07aa17b1ca (patch) | |
| tree | eb13ff258201f8ec7cad3d670fd244de5684bae0 /src/View/MainWindow.hpp | |
| parent | ce3f721e16c779d519c04469e49a65f60546ab8d (diff) | |
Quickly draw basic grid (no reliable code)
Diffstat (limited to 'src/View/MainWindow.hpp')
| -rw-r--r-- | src/View/MainWindow.hpp | 8 |
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(); }; |
