mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-02-24 22:05:07 +01:00
26 lines
347 B
C
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
|