mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
1.6 KiB
1.6 KiB
Description
This PR is related to the issue #
Tasks
- Tested on Linux
- Tested on Windows
- Tested on macOS
- Tested on iOS
- Tested on Android
How to test this PR?
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode({1280, 720}), "Minimal, complete and verifiable example");
window.setFramerateLimit(60);
while (window.isOpen())
{
while (const std::optional event = window.pollEvent())
{
if (event->is<sf::Event::Closed>())
window.close();
}
window.clear();
window.display();
}
}