2P11/src/View/MainWindow.hpp

21 lines
290 B
C++
Raw Normal View History

#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();
};