-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
39 lines (30 loc) · 666 Bytes
/
Copy pathmain.cpp
File metadata and controls
39 lines (30 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <iostream>
#include <SFML/Graphics.hpp>
#include "params.hpp"
#include "visualizer.hpp"
#include <vector>
void run();
int main()
{
run();
return 0;
}
void run()
{
sf::RenderWindow window(sf::VideoMode(WIN_WIDTH, WIN_HEIGHT), "Sorting Algorithms Visualizer");
window.setFramerateLimit(0);
Visualizer visualizer;
while (window.isOpen())
{
visualizer.sort();
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
visualizer.draw(window);
window.display();
}
}