2016-03-10 03:47:37 +00:00
|
|
|
#ifndef __URDE_CAUIENERGYBAR_HPP__
|
|
|
|
#define __URDE_CAUIENERGYBAR_HPP__
|
|
|
|
|
|
|
|
#include "CGuiWidget.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
2017-01-22 01:40:12 +00:00
|
|
|
class CSimplePool;
|
2016-03-10 03:47:37 +00:00
|
|
|
|
|
|
|
class CAuiEnergyBarT01 : public CGuiWidget
|
|
|
|
{
|
2016-03-12 04:58:56 +00:00
|
|
|
public:
|
|
|
|
CAuiEnergyBarT01(const CGuiWidgetParms& parms, u32);
|
2017-01-29 03:58:16 +00:00
|
|
|
FourCC GetWidgetTypeID() const { return FOURCC('ENRG'); }
|
2017-01-22 01:40:12 +00:00
|
|
|
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
|
2016-03-10 03:47:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CAUIENERGYBAR_HPP__
|