metaforce/Runtime/GuiSys/CAuiImagePane.hpp

20 lines
460 B
C++
Raw Normal View History

2016-03-10 03:47:37 +00:00
#ifndef __URDE_CAUIIMAGEPANE_HPP__
#define __URDE_CAUIIMAGEPANE_HPP__
#include "CGuiWidget.hpp"
namespace urde
{
class CAuiImagePane : public CGuiWidget
{
2017-01-21 15:46:51 +00:00
public:
CAuiImagePane(const CGuiWidgetParms&, s32, s32, const rstl::reserved_vector<zeus::CVector3f, 4>&,
const rstl::reserved_vector<zeus::CVector2f, 4>&, bool);
2016-03-10 03:47:37 +00:00
2017-01-21 15:46:51 +00:00
static CGuiWidget* Create(CGuiFrame *frame, CInputStream &in, bool);
};
2016-03-10 03:47:37 +00:00
}
#endif // __URDE_CAUIIMAGEPANE_HPP__