mirror of
https://github.com/koloideal/SortLab.git
synced 2026-06-10 02:15:31 +03:00
14 lines
281 B
C++
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;
|
|
};
|