F.E.I.S/Widgets/BlankScreen.h
Stepland a3758f2846 fixed https://github.com/Stepland/F.E.I.S./issues/3
refactored Widgets into a folder to avoid huge files and circular dependency problems
2019-04-06 22:35:17 +02:00

26 lines
347 B
C++

//
// Created by symeon on 06/04/19.
//
#ifndef FEIS_BLANKSCREEN_H
#define FEIS_BLANKSCREEN_H
#include <SFML/Graphics.hpp>
class BlankScreen {
public:
BlankScreen();
void render(sf::RenderWindow &window);
private:
sf::Color gris_de_fond;
sf::Texture tex_FEIS_logo;
sf::Sprite FEIS_logo;
};
#endif //FEIS_BLANKSCREEN_H