Files
SortLab/include/ProgressMap.hpp
T
2026-03-03 21:14:39 +03:00

14 lines
281 B
C++

#pragma once
#include <SFML/Graphics.hpp>
#include "Array.hpp"
class ProgressMap {
public:
ProgressMap();
void draw(sf::RenderWindow& window, const Array& array, sf::Font& font, bool fontLoaded);
private:
sf::Color getColorForState(Array::State state) const;
};