mirror of
https://github.com/koloideal/SortLab.git
synced 2026-06-10 10:25:30 +03:00
skelet
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#include <SFML/Graphics.hpp>
|
||||
|
||||
int main() {
|
||||
sf::RenderWindow window(sf::VideoMode(1280, 720), "SortLab");
|
||||
|
||||
while (window.isOpen()) {
|
||||
sf::Event event{};
|
||||
while (window.pollEvent(event)) {
|
||||
if (event.type == sf::Event::Closed) {
|
||||
window.close();
|
||||
}
|
||||
}
|
||||
|
||||
window.clear(sf::Color(18, 18, 22));
|
||||
window.display();
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user