hb-appstore/gui/ProgressBar.hpp

15 lines
198 B
C++

#include "Element.hpp"
class ProgressBar : public Element
{
public:
ProgressBar();
void render(Element* parent);
float percent = 0;
int color;
bool dimBg = false;
int width = 0;
};