the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3class CXuiCtrlProgressCtrlBase : public CXuiProgressBar, public CXuiElementImplBase
4{
5public:
6 HRESULT OnGetSourceDataText(XUIMessageGetSourceText *pGetSourceTextData, BOOL& bHandled);
7
8 // Override these in the derived classes to return the values to be displayed on the control
9 virtual int GetValue() = 0;
10 virtual void GetRange(int *pnRangeMin, int *pnRangeMax) = 0;
11};