21 lines
290 B
C++
21 lines
290 B
C++
![]() |
|
||
|
|
||
|
|
||
|
#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();
|
||
|
|
||
|
};
|