metaforce/Runtime/GuiSys/CGuiTextPane.hpp

22 lines
536 B
C++
Raw Normal View History

2016-03-10 03:47:37 +00:00
#ifndef __URDE_CGUITEXTPANE_HPP__
#define __URDE_CGUITEXTPANE_HPP__
#include "CGuiPane.hpp"
2016-03-18 03:35:16 +00:00
#include "CGuiTextSupport.hpp"
2016-03-10 03:47:37 +00:00
namespace urde
{
class CGuiTextPane : public CGuiPane
{
public:
CGuiTextPane(const CGuiWidgetParms& parms, float a, float b, const zeus::CVector3f& vec,
u32, const CGuiTextProperties& props, const zeus::CColor& col1, const zeus::CColor& col2,
int, int);
static CGuiTextPane* Create(CGuiFrame* frame, CInputStream& in, bool);
};
2016-03-10 03:47:37 +00:00
}
#endif // __URDE_CGUITEXTPANE_HPP__