metaforce/Runtime/GuiSys/CGuiHeadWidget.hpp

21 lines
474 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-03-11 22:50:15 +00:00
#include "CGuiWidget.hpp"
namespace urde
{
class CGuiHeadWidget : public CGuiWidget
{
public:
2017-01-29 03:58:16 +00:00
FourCC GetWidgetTypeID() const { return FOURCC('HWIG'); }
2016-03-11 22:50:15 +00:00
CGuiHeadWidget(const CGuiWidgetParms& parms);
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
std::shared_ptr<CGuiHeadWidget> shared_from_this()
{ return std::static_pointer_cast<CGuiHeadWidget>(CGuiObject::shared_from_this()); }
2016-03-11 22:50:15 +00:00
};
}