This commit is contained in:
2026-03-03 21:14:39 +03:00
parent bf8e3bad6f
commit ff28dbb2f5
9 changed files with 376 additions and 58 deletions
+13
View File
@@ -0,0 +1,13 @@
#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;
};