Add first version of SFMLController and View class

This commit is contained in:
manzerbredes 2015-05-03 14:19:30 +02:00
parent ddaf5ba3ba
commit ce3f721e16
9 changed files with 113 additions and 3 deletions

20
src/View/MainWindow.hpp Normal file
View file

@ -0,0 +1,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();
};