| 191 | FALCOR_OBJECT(ProgressBar) |
| 192 | public: |
| 193 | ProgressBar(Widget* parent, float fraction = 0.f) : Widget(parent), m_fraction(fraction) {} |
| 194 | |
| 195 | float get_fraction() const { return m_fraction; } |
| 196 | void set_fraction(float fraction) { m_fraction = fraction; } |