mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
1.5 KiB
1.5 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())
{
for (sf::Event event; window.pollEvent(event);)
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.display();
}
}