mirror of
https://github.com/XorTroll/hb-appstore.git
synced 2024-11-30 05:31:00 +00:00
15 lines
198 B
C++
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;
|
|
};
|