#pragma once #include #include struct Ecran { // FenĂȘtre static sf::RenderWindow window; Ecran(const uint width = 800, const uint height = 800, const std::string name = "Projet"); // constructor ~Ecran(); // destructor void afficher(std::function f = {[]() {}}); };