summaryrefslogtreecommitdiff
path: root/src/View/MainWindow.hpp
blob: a0e7c5835c63ccb4591415af90a12a50671ba882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20



#include <iostream>
#include <vector>
#include <SFML/Window.hpp>
#include <SFML/Graphics.hpp>


class MainWindow : public sf::RenderWindow{

	private:
		std::vector<sf::Color> skin;
	public:
		MainWindow(int width, int height, std::string title);
		~MainWindow();

		void clearMW();

};