1#include <SFML/Graphics.hpp>
5 sf::RenderWindow window(sf::VideoMode({200, 200}),
"SFML works!");
6 sf::CircleShape shape(100.f);
7 shape.setFillColor(sf::Color::Red);
9 while (window.isOpen())
11 while (
const std::optional event = window.pollEvent())
13 if (event->is<sf::Event::Closed>())